DROP TABLE IF EXISTS `wp_commentmeta`;

CREATE TABLE `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;


DROP TABLE IF EXISTS `wp_comments`;

CREATE TABLE `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_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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO wp_comments VALUES("1","1","Mr WordPress","","http://wordpress.org/","","2012-09-08 04:24:28","2012-09-08 04:24:28","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");

DROP TABLE IF EXISTS `wp_links`;

CREATE TABLE `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 AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;

INSERT INTO wp_links VALUES("1","http://codex.wordpress.org/","Documentation","","","","Y","1","0","0000-00-00 00:00:00","","","");
INSERT INTO wp_links VALUES("2","http://wordpress.org/news/","WordPress Blog","","","","Y","1","0","0000-00-00 00:00:00","","","http://wordpress.org/news/feed/");
INSERT INTO wp_links VALUES("3","http://wordpress.org/support/","Support Forums","","","","Y","1","0","0000-00-00 00:00:00","","","");
INSERT INTO wp_links VALUES("4","http://wordpress.org/extend/plugins/","Plugins","","","","Y","1","0","0000-00-00 00:00:00","","","");
INSERT INTO wp_links VALUES("5","http://wordpress.org/extend/themes/","Themes","","","","Y","1","0","0000-00-00 00:00:00","","","");
INSERT INTO wp_links VALUES("6","http://wordpress.org/support/forum/requests-and-feedback","Feedback","","","","Y","1","0","0000-00-00 00:00:00","","","");
INSERT INTO wp_links VALUES("7","http://planet.wordpress.org/","WordPress Planet","","","","Y","1","0","0000-00-00 00:00:00","","","");

DROP TABLE IF EXISTS `wp_ngg_album`;

CREATE TABLE `wp_ngg_album` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `previewpic` bigint(20) NOT NULL DEFAULT '0',
  `albumdesc` mediumtext,
  `sortorder` longtext NOT NULL,
  `pageid` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


DROP TABLE IF EXISTS `wp_ngg_gallery`;

CREATE TABLE `wp_ngg_gallery` (
  `gid` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `path` mediumtext,
  `title` mediumtext,
  `galdesc` mediumtext,
  `pageid` bigint(20) NOT NULL DEFAULT '0',
  `previewpic` bigint(20) NOT NULL DEFAULT '0',
  `author` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`gid`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

INSERT INTO wp_ngg_gallery VALUES("2","product","product","wp-content/gallery/product","Product","","0","16","1");
INSERT INTO wp_ngg_gallery VALUES("3","slide-products","slide-products","wp-content/gallery/slide-products","Slide-Products","","0","24","1");

DROP TABLE IF EXISTS `wp_ngg_pictures`;

CREATE TABLE `wp_ngg_pictures` (
  `pid` bigint(20) NOT NULL AUTO_INCREMENT,
  `image_slug` varchar(255) NOT NULL,
  `post_id` bigint(20) NOT NULL DEFAULT '0',
  `galleryid` bigint(20) NOT NULL DEFAULT '0',
  `filename` varchar(255) NOT NULL,
  `description` mediumtext,
  `alttext` mediumtext,
  `imagedate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `exclude` tinyint(4) DEFAULT '0',
  `sortorder` bigint(20) NOT NULL DEFAULT '0',
  `meta_data` longtext,
  PRIMARY KEY (`pid`),
  KEY `post_id` (`post_id`)
) ENGINE=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=utf8;

INSERT INTO wp_ngg_pictures VALUES("17","amourwallportrait-slide","0","3","amourwallportrait-slide.jpg","","amourwallportrait-slide","2012-09-12 06:47:26","0","0","a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:800;s:6:\"height\";i:507;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:100;s:6:\"height\";i:75;}}");
INSERT INTO wp_ngg_pictures VALUES("16","visagewallportrait","0","2","visagewallportrait.jpg","","visagewallportrait","2012-09-12 06:08:52","0","0","a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:800;s:6:\"height\";i:598;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:100;s:6:\"height\";i:75;}}");
INSERT INTO wp_ngg_pictures VALUES("15","visage-petit-framed","0","2","visage-petit-framed.jpg","","visage-petit-framed","2012-09-12 06:08:34","0","0","a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:800;s:6:\"height\";i:507;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:100;s:6:\"height\";i:75;}}");
INSERT INTO wp_ngg_pictures VALUES("14","troiswallportrait","0","2","troiswallportrait.jpg","","troiswallportrait","2012-09-12 06:08:12","0","0","a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:800;s:6:\"height\";i:519;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:100;s:6:\"height\";i:75;}}");
INSERT INTO wp_ngg_pictures VALUES("13","singlewallportrait","0","2","singlewallportrait.jpg","","singlewallportrait","2012-09-12 06:07:58","0","0","a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:800;s:6:\"height\";i:597;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:100;s:6:\"height\";i:75;}}");
INSERT INTO wp_ngg_pictures VALUES("12","plusdamouwallportrait","0","2","plusdamouwallportrait.jpg","","plusdamouwallportrait","2012-09-12 06:07:42","0","0","a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:800;s:6:\"height\";i:598;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:100;s:6:\"height\";i:75;}}");
INSERT INTO wp_ngg_pictures VALUES("10","enjouewallportrait","0","2","enjouewallportrait.jpg","","enjouewallportrait","2012-09-12 06:07:09","0","0","a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:800;s:6:\"height\";i:531;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:100;s:6:\"height\";i:75;}}");
INSERT INTO wp_ngg_pictures VALUES("11","plusdamourwallportrait","0","2","plusdamourwallportrait.jpg","","plusdamourwallportrait","2012-09-12 06:07:24","0","0","a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:546;s:6:\"height\";i:600;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:100;s:6:\"height\";i:75;}}");
INSERT INTO wp_ngg_pictures VALUES("9","amourwallportrait","0","2","amourwallportrait.jpg","","amourwallportrait","2012-09-12 06:06:47","0","0","a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:607;s:6:\"height\";i:600;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:100;s:6:\"height\";i:75;}}");
INSERT INTO wp_ngg_pictures VALUES("18","enjouewallportrait-slide","0","3","enjouewallportrait-slide.jpg","","enjouewallportrait-slide","2012-09-12 06:47:45","0","0","a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:800;s:6:\"height\";i:507;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:100;s:6:\"height\";i:75;}}");
INSERT INTO wp_ngg_pictures VALUES("19","plusdamourwallportrait-slide","0","3","plusdamourwallportrait-slide.jpg","","plusdamourwallportrait-slide","2012-09-12 06:48:00","0","0","a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:800;s:6:\"height\";i:507;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:100;s:6:\"height\";i:75;}}");
INSERT INTO wp_ngg_pictures VALUES("20","plusdamouwallportrait-slide","0","3","plusdamouwallportrait-slide.jpg","","plusdamouwallportrait-slide","2012-09-12 06:48:19","0","0","a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:800;s:6:\"height\";i:507;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:100;s:6:\"height\";i:75;}}");
INSERT INTO wp_ngg_pictures VALUES("21","singlewallportrait-slide","0","3","singlewallportrait-slide.jpg","","singlewallportrait-slide","2012-09-12 06:48:35","0","0","a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:800;s:6:\"height\";i:507;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:100;s:6:\"height\";i:75;}}");
INSERT INTO wp_ngg_pictures VALUES("22","troiswallportrait-slide","0","3","troiswallportrait-slide.jpg","","troiswallportrait-slide","2012-09-12 06:48:47","0","0","a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:800;s:6:\"height\";i:507;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:100;s:6:\"height\";i:75;}}");
INSERT INTO wp_ngg_pictures VALUES("23","visage-petit-framed-slide","0","3","visage-petit-framed-slide.jpg","","visage-petit-framed-slide","2012-09-12 06:49:10","0","0","a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:800;s:6:\"height\";i:507;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:100;s:6:\"height\";i:75;}}");
INSERT INTO wp_ngg_pictures VALUES("24","visagewallportrait-slide","0","3","visagewallportrait-slide.jpg","","visagewallportrait-slide","2012-09-12 06:49:26","0","0","a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:800;s:6:\"height\";i:507;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:100;s:6:\"height\";i:75;}}");

DROP TABLE IF EXISTS `wp_options`;

CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `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 AUTO_INCREMENT=2674 DEFAULT CHARSET=utf8;

INSERT INTO wp_options VALUES("1","siteurl","http://www.livingimagephotography.com.au","yes");
INSERT INTO wp_options VALUES("2","blogname","Living Image Photography","yes");
INSERT INTO wp_options VALUES("3","blogdescription","My Wordpress Blog","yes");
INSERT INTO wp_options VALUES("4","users_can_register","0","yes");
INSERT INTO wp_options VALUES("5","admin_email","admin@livingimagephotography.com.au","yes");
INSERT INTO wp_options VALUES("6","start_of_week","1","yes");
INSERT INTO wp_options VALUES("7","use_balanceTags","0","yes");
INSERT INTO wp_options VALUES("8","use_smilies","1","yes");
INSERT INTO wp_options VALUES("9","require_name_email","1","yes");
INSERT INTO wp_options VALUES("10","comments_notify","1","yes");
INSERT INTO wp_options VALUES("11","posts_per_rss","10","yes");
INSERT INTO wp_options VALUES("12","rss_use_excerpt","0","yes");
INSERT INTO wp_options VALUES("13","mailserver_url","mail.example.com","yes");
INSERT INTO wp_options VALUES("14","mailserver_login","login@example.com","yes");
INSERT INTO wp_options VALUES("15","mailserver_pass","password","yes");
INSERT INTO wp_options VALUES("16","mailserver_port","110","yes");
INSERT INTO wp_options VALUES("17","default_category","1","yes");
INSERT INTO wp_options VALUES("18","default_comment_status","open","yes");
INSERT INTO wp_options VALUES("19","default_ping_status","open","yes");
INSERT INTO wp_options VALUES("20","default_pingback_flag","1","yes");
INSERT INTO wp_options VALUES("21","default_post_edit_rows","20","yes");
INSERT INTO wp_options VALUES("22","posts_per_page","10","yes");
INSERT INTO wp_options VALUES("23","date_format","F j, Y","yes");
INSERT INTO wp_options VALUES("24","time_format","g:i a","yes");
INSERT INTO wp_options VALUES("25","links_updated_date_format","F j, Y g:i a","yes");
INSERT INTO wp_options VALUES("26","links_recently_updated_prepend","<em>","yes");
INSERT INTO wp_options VALUES("27","links_recently_updated_append","</em>","yes");
INSERT INTO wp_options VALUES("28","links_recently_updated_time","120","yes");
INSERT INTO wp_options VALUES("29","comment_moderation","0","yes");
INSERT INTO wp_options VALUES("30","moderation_notify","1","yes");
INSERT INTO wp_options VALUES("31","permalink_structure","/%postname%/","yes");
INSERT INTO wp_options VALUES("32","gzipcompression","0","yes");
INSERT INTO wp_options VALUES("33","hack_file","0","yes");
INSERT INTO wp_options VALUES("34","blog_charset","UTF-8","yes");
INSERT INTO wp_options VALUES("35","moderation_keys","","no");
INSERT INTO wp_options VALUES("36","active_plugins","a:7:{i:0;s:36:\"google-sitemap-generator/sitemap.php\";i:1;s:29:\"gravityforms/gravityforms.php\";i:2;s:41:\"jamie-social-icons/jamie-social_icons.php\";i:3;s:29:\"nextgen-gallery/nggallery.php\";i:4;s:33:\"w3-total-cache/w3-total-cache.php\";i:5;s:24:\"wordpress-seo/wp-seo.php\";i:6;s:25:\"wp-smushit/wp-smushit.php\";}","yes");
INSERT INTO wp_options VALUES("37","home","http://www.livingimagephotography.com.au","yes");
INSERT INTO wp_options VALUES("38","category_base","","yes");
INSERT INTO wp_options VALUES("39","ping_sites","http://rpc.pingomatic.com/","yes");
INSERT INTO wp_options VALUES("40","advanced_edit","0","yes");
INSERT INTO wp_options VALUES("41","comment_max_links","2","yes");
INSERT INTO wp_options VALUES("42","gmt_offset","0","yes");
INSERT INTO wp_options VALUES("43","default_email_category","1","yes");
INSERT INTO wp_options VALUES("44","recently_edited","a:5:{i:0;s:109:\"/home/livingim/public_html/livingimagephotography.com.au/wp-content/plugins/jamie-social-icons/css/social.css\";i:2;s:117:\"/home/livingim/public_html/livingimagephotography.com.au/wp-content/plugins/jamie-social-icons/jamie-social_icons.php\";i:3;s:105:\"/home/livingim/public_html/livingimagephotography.com.au/wp-content/plugins/gravityforms/gravityforms.php\";i:4;s:90:\"/home/livingim/public_html/livingimagephotography.com.au/wp-content/themes/rhea/header.php\";i:5;s:93:\"/home/livingim/public_html/livingimagephotography.com.au/wp-content/themes/rhea/functions.php\";}","no");
INSERT INTO wp_options VALUES("45","template","rhea","yes");
INSERT INTO wp_options VALUES("46","stylesheet","rhea","yes");
INSERT INTO wp_options VALUES("47","comment_whitelist","1","yes");
INSERT INTO wp_options VALUES("48","blacklist_keys","","no");
INSERT INTO wp_options VALUES("49","comment_registration","0","yes");
INSERT INTO wp_options VALUES("50","html_type","text/html","yes");
INSERT INTO wp_options VALUES("51","use_trackback","0","yes");
INSERT INTO wp_options VALUES("52","default_role","subscriber","yes");
INSERT INTO wp_options VALUES("53","db_version","21707","yes");
INSERT INTO wp_options VALUES("54","uploads_use_yearmonth_folders","1","yes");
INSERT INTO wp_options VALUES("55","upload_path","","yes");
INSERT INTO wp_options VALUES("56","blog_public","1","yes");
INSERT INTO wp_options VALUES("57","default_link_category","2","yes");
INSERT INTO wp_options VALUES("58","show_on_front","page","yes");
INSERT INTO wp_options VALUES("59","tag_base","","yes");
INSERT INTO wp_options VALUES("60","show_avatars","1","yes");
INSERT INTO wp_options VALUES("61","avatar_rating","G","yes");
INSERT INTO wp_options VALUES("62","upload_url_path","","yes");
INSERT INTO wp_options VALUES("63","thumbnail_size_w","150","yes");
INSERT INTO wp_options VALUES("64","thumbnail_size_h","150","yes");
INSERT INTO wp_options VALUES("65","thumbnail_crop","1","yes");
INSERT INTO wp_options VALUES("66","medium_size_w","300","yes");
INSERT INTO wp_options VALUES("67","medium_size_h","300","yes");
INSERT INTO wp_options VALUES("68","avatar_default","mystery","yes");
INSERT INTO wp_options VALUES("69","enable_app","0","yes");
INSERT INTO wp_options VALUES("70","enable_xmlrpc","0","yes");
INSERT INTO wp_options VALUES("71","large_size_w","1024","yes");
INSERT INTO wp_options VALUES("72","large_size_h","1024","yes");
INSERT INTO wp_options VALUES("73","image_default_link_type","file","yes");
INSERT INTO wp_options VALUES("74","image_default_size","","yes");
INSERT INTO wp_options VALUES("75","image_default_align","","yes");
INSERT INTO wp_options VALUES("76","close_comments_for_old_posts","0","yes");
INSERT INTO wp_options VALUES("77","close_comments_days_old","14","yes");
INSERT INTO wp_options VALUES("78","thread_comments","1","yes");
INSERT INTO wp_options VALUES("79","thread_comments_depth","5","yes");
INSERT INTO wp_options VALUES("80","page_comments","0","yes");
INSERT INTO wp_options VALUES("81","comments_per_page","50","yes");
INSERT INTO wp_options VALUES("82","default_comments_page","newest","yes");
INSERT INTO wp_options VALUES("83","comment_order","asc","yes");
INSERT INTO wp_options VALUES("84","sticky_posts","a:0:{}","yes");
INSERT INTO wp_options VALUES("85","widget_categories","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("86","widget_text","a:4:{i:2;a:3:{s:5:\"title\";s:17:\"SOMETHING SPECIAL\";s:4:\"text\";s:290:\"<a href=\"http://www.shootthedog.com.au/\"><img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/shootthedog.png\" align=\"left\" width=\"103\" height=\"167\" alt=\"\" /><strong>Shoot the Dog</strong></a>\n<br />\n<p>Be part of this Exclusive and Beautiful Coffee Table Book!</p>\n\";s:6:\"filter\";b:0;}i:3;a:3:{s:5:\"title\";s:20:\"Fine Art Photography\";s:4:\"text\";s:213:\"<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\";s:6:\"filter\";b:0;}i:4;a:3:{s:5:\"title\";s:19:\"Fine Art Photograpy\";s:4:\"text\";s:213:\"<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("87","widget_rss","a:0:{}","yes");
INSERT INTO wp_options VALUES("88","uninstall_plugins","a:1:{s:29:\"nextgen-gallery/nggallery.php\";a:2:{i:0;s:9:\"nggLoader\";i:1;s:9:\"uninstall\";}}","no");
INSERT INTO wp_options VALUES("89","timezone_string","","yes");
INSERT INTO wp_options VALUES("90","embed_autourls","1","yes");
INSERT INTO wp_options VALUES("91","embed_size_w","","yes");
INSERT INTO wp_options VALUES("92","embed_size_h","600","yes");
INSERT INTO wp_options VALUES("93","page_for_posts","0","yes");
INSERT INTO wp_options VALUES("94","page_on_front","1035","yes");
INSERT INTO wp_options VALUES("95","default_post_format","0","yes");
INSERT INTO wp_options VALUES("96","initial_db_version","21707","yes");
INSERT INTO wp_options VALUES("97","wp_user_roles","a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:71:{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:24:\"NextGEN Gallery overview\";b:1;s:19:\"NextGEN Use TinyMCE\";b:1;s:21:\"NextGEN Upload images\";b:1;s:22:\"NextGEN Manage gallery\";b:1;s:19:\"NextGEN Manage tags\";b:1;s:29:\"NextGEN Manage others gallery\";b:1;s:18:\"NextGEN Edit album\";b:1;s:20:\"NextGEN Change style\";b:1;s:22:\"NextGEN Change options\";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");
INSERT INTO wp_options VALUES("98","widget_search","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("99","widget_recent-posts","a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("100","widget_recent-comments","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("101","widget_archives","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("102","widget_meta","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("103","sidebars_widgets","a:5:{s:19:\"wp_inactive_widgets\";a:7:{i:0;s:22:\"featured_post_widget-2\";i:1;s:6:\"text-2\";i:2;s:11:\"slideshow-3\";i:3;s:6:\"text-4\";i:4;s:6:\"text-3\";i:5;s:26:\"featured_category_widget-2\";i:6;s:11:\"slideshow-4\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:1:{i:0;s:21:\"custom_contact_form-2\";}s:13:\"array_version\";i:3;}","yes");
INSERT INTO wp_options VALUES("104","cron","a:6:{i:1350260644;a:2:{s:18:\"w3_pgcache_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:18:\"w3_pgcache_cleanup\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:18:\"w3_dbcache_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:18:\"w3_dbcache_cleanup\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1350261033;a:1:{s:22:\"w3_objectcache_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:22:\"w3_objectcache_cleanup\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1350275178;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:1350275212;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:1350276120;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";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");
INSERT INTO wp_options VALUES("106","_site_transient_update_core","O:8:\"stdClass\":3:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":9:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:40:\"http://wordpress.org/wordpress-3.4.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":4:{s:4:\"full\";s:40:\"http://wordpress.org/wordpress-3.4.2.zip\";s:10:\"no_content\";s:51:\"http://wordpress.org/wordpress-3.4.2-no-content.zip\";s:11:\"new_bundled\";s:52:\"http://wordpress.org/wordpress-3.4.2-new-bundled.zip\";s:7:\"partial\";b:0;}s:7:\"current\";s:5:\"3.4.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"3.2\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1349998280;s:15:\"version_checked\";s:5:\"3.4.2\";}","yes");
INSERT INTO wp_options VALUES("2648","_site_transient_timeout_theme_roots","1350013517","yes");
INSERT INTO wp_options VALUES("2649","_site_transient_theme_roots","a:3:{s:4:\"rhea\";s:7:\"/themes\";s:12:\"twentyeleven\";s:7:\"/themes\";s:9:\"twentyten\";s:7:\"/themes\";}","yes");
INSERT INTO wp_options VALUES("111","_site_transient_timeout_browser_255828c301a2b4b39adc0d3acf7051c9","1347683212","yes");
INSERT INTO wp_options VALUES("112","_site_transient_browser_255828c301a2b4b39adc0d3acf7051c9","a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:6:\"14.0.1\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"12\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("113","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:40:\"http://www.livingimagephotography.com.au\";s:4:\"link\";s:116:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://www.livingimagephotography.com.au/\";s:3:\"url\";s:149:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://www.livingimagephotography.com.au/\";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");
INSERT INTO wp_options VALUES("2594","_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c","1350041888","no");
INSERT INTO wp_options VALUES("2595","_transient_feed_867bd5c64f85878d03a060509cd2f92c","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Alex King: Twitter Tools 3.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://alexking.org/?p=14672\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"http://alexking.org/blog/2012/10/11/twitter-tools-3-0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2799:\"<p>When I first started posting to Twitter I soon realized that I wanted to keep a copy of that content. Twitter Tools was born <a href=\"http://alexking.org/blog/2007/03/06/twitter-archiver-behavior\">shortly thereafter</a>. Since that time Twitter has evolved, WordPress has evolved, and my vision of how best to integrate the two has evolved with them. Twitter Tools 3.0 is a complete rewrite which realizes that vision in a way I&#8217;m quite pleased with.</p>\n<ul>\n<li>Supports multiple Twitter accounts.</li>\n<li>Broadcast different &#8220;new post&#8221; messages to different Twitter accounts (via Social).</li>\n<li>Set-up and configuration is painless (no registering a developer app, copying keys, etc.) via integration with <a href=\"http://wordpress.org/extend/plugins/social/\">Social</a>.</li>\n<li>Tweets are stored as a custom post type and with custom taxonomies for accounts, @mentions and #hashtags.</li>\n<li>Local copies of tweets can be easily edited and deleted via the standard WordPress admin screens.</li>\n<li>Tweets can be displayed on your site via archive view, individual tweet view and via shortcodes and sidebar widget.</li>\n<li>Full Twitter data is stored with each tweet.</li>\n<li>An image included in the &#8220;media&#8221; data of a tweet is downloaded and saved as the featured image for the tweet.</li>\n<li>Create blog posts (as status updates) from each tweet (optional).</li>\n<li>Compatible with the latest Twitter API changes (as of today&#8217;s writing).</li>\n</ul>\n<p>The previous versions of Twitter Tools used an additional database table to store your tweets. These are upgraded to the new format (and more data about each is downloaded from Twitter) as part of the upgrade process. If appropriate, you&#8217;ll be prompted to upgrade on the Settings screen.</p>\n<p>I&#8217;ve been working on this release of Twitter tools for <em>way</em> too long. The first beta was pushed out back in <a href=\"http://alexking.org/blog/2011/12/14/twitter-tools-3-0-beta-1\">December of last year</a> and it&#8217;s been making glacial progress since then. The good news is, I&#8217;ve been running it on my site for nearly a year now and I&#8217;m quite confident it&#8217;s stable and functions as expected &#8211; at least in my usage and environment.</p>\n<p>Want to see it in action? Browse my tweets <a href=\"http://alexking.org/tweets\">here</a> (check out examples by <a href=\"http://alexking.org/tweet-mentions/sogrady\">@mention</a> and <a href=\"http://alexking.org/tweet-hashtags/wordpress\">#hashtag</a>).</p>\n<p>Download it from <a href=\"http://wordpress.org/extend/plugins/twitter-tools/\">WordPress.org</a> (where you can see screenshots, etc.), contribute on <a href=\"https://github.com/crowdfavorite/wp-twitter-tools\">GitHub</a>, and use it in good health!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Oct 2012 20:13:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WordPress.tv: João Paulo Mehl: ÀgoraDelibera – Experiências de Democracia Digital\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13825\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"http://wordpress.tv/2012/10/11/joao-paulo-mehl-agoradelibera-experiencias-de-democracia-digital-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:775:\"<div id=\"v-ip3ATRVM-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13825/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13825/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13825&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/11/joao-paulo-mehl-agoradelibera-experiencias-de-democracia-digital-2/\"><img alt=\"2012_011_wordcamp_curitiba_agora_delibera_experiencias_democraica_digital\" src=\"http://videos.videopress.com/ip3ATRVM/2012_011_wordcamp_curitiba_agora_delibera_experiencias_democraica_digital_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Oct 2012 19:01:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Vinicius Massuchetto\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WordPress.tv: Felipe Coelho Kussik: WordPress Total\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13783\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.tv/2012/10/11/felipe-coelho-kussik-wordpress-total/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:647:\"<div id=\"v-qIRAW1qt-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13783/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13783/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13783&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/11/felipe-coelho-kussik-wordpress-total/\"><img alt=\"2012_010_wordpress_total\" src=\"http://videos.videopress.com/qIRAW1qt/2012_010_wordpress_total_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Oct 2012 13:01:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Vinicius Massuchetto\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WordPress.tv: Frank Alcantara: Odeio Pinguim – Uma Relação de Amor e Ódio com o Google\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13744\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"http://wordpress.tv/2012/10/10/frank-alcantara-odeio-pinguim-uma-relacao-de-amor-e-odio-com-o-google/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:792:\"<div id=\"v-WEcIydBv-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13744/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13744/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13744&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/10/frank-alcantara-odeio-pinguim-uma-relacao-de-amor-e-odio-com-o-google/\"><img alt=\"2012_009_wordcamp_curitiba_odeio_penguim_uma_relacao_de_amor_e_odio_com_o_google\" src=\"http://videos.videopress.com/WEcIydBv/2012_009_wordcamp_curitiba_odeio_penguim_uma_relacao_de_amor_e_odio_com_o_google_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Oct 2012 01:00:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Vinicius Massuchetto\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"Weblog Tools Collection: WordPress Plugin Releases for 10/10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12086\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/W3GiFJPnpzo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1372:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/follow-subscribe/\"><strong>Follow and Subscribe</strong></a> is a siderbar widget that shows links to a variety of social networks.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/mobile-css/\"><strong>Mobile CSS</strong></a> allows you to define different CSS styles that get loaded for specific mobile devices.</p>\n<p><a href=\"http://ocaoimh.ie/tweet-tweet/\"><strong>Tweet Tweet</strong></a> polls Twitter and archives your tweets and the tweets of those you follow so those insightful conversations you have at 1am are never lost.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/automatic-post-tagger/\"><strong>Automatic Post Tagger</strong></a> automatically adds user-specified tags to posts.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/pushover-notifications/\"><strong>Pushover Notifications</strong></a> allows your WordPress blog to send push notifications for events happening on your blog straight to your iOS/Android device.</p>\n<p><a href=\"http://yoast.com/wordpress/seo/\"><strong>WordPress SEO</strong></a> is an all in one solution to search engine optimize your WordPress blog: SEO titles, meta descriptions, XML sitemaps and much more.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/W3GiFJPnpzo\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Oct 2012 15:00:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Gravatar: Default Image Changes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.gravatar.com/?p=409\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://blog.gravatar.com/2012/10/09/default-image-changes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2065:\"<p>Last week we made some changes to how default images, sometimes called &#8220;fallback images&#8221;, are handled in Gravatar URLs. The purpose of these changes was to enhance the security of the Gravatar API and protect the many of millions of users who view billions of Gravatars every day. The majority of you will not notice any change &#8211; which is good!  If you&#8217;re a developer though, you should keep these recent updates in mind.</p>\n<p>You can read all about how default images work on the <a href=\"http://gravatar.com/site/implement/images/\">implementation page</a>, but the short version is:</p>\n<blockquote><p>Default images must be publicly accessible via a simple HTTP or HTTPS request on the standard ports of 80 and 443, respectively.  They must have a valid image file extension of <code>jpg</code>, <code>jpeg</code>, <code>png</code>, or <code>gif</code>.</p></blockquote>\n<p>If your default image is not publicly accessible, doesn&#8217;t have a file extension, is not actually an image, requires HTTP Authentication, or is otherwise unavailable to a normal web request, it cannot be used as the fallback/default image for a Gravatar. On the backend, we are now processing default images through a new service we have been working on called Photon, which we will talk more about soon.</p>\n<p>We&#8217;ve also introduced a new default image which you can use, called &#8216;blank&#8217;. Just use <code>?d=blank</code> and you&#8217;ll get a transparent PNG image in whatever size you asked for if the requested Gravatar doesn&#8217;t exist. More details on this are on the <a href=\"http://gravatar.com/site/implement/images/\">image implementation page</a> as well.</p>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/gravatar.wordpress.com/409/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/gravatar.wordpress.com/409/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=blog.gravatar.com&blog=1886259&post=409&subd=gravatar&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Oct 2012 01:30:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Barry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Matt: Pandora and Artist Payments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=41960\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://ma.tt/2012/10/pandora-and-artist-payments/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:277:\"<p><a href=\"http://blog.pandora.com/pandora/archives/2012/10/pandora-and-art.html\">Pandora and Artist Payments</a>, about how Pandora is paying out millions of dollars to artists but is only 6.5% of the US radio listening audience, the fees the rest pay are far, far lower.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Oct 2012 22:55:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Alex King: WordCamp Denver This Weekend\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://alexking.org/?p=14630\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://alexking.org/blog/2012/10/09/wordcamp-denver-this-weekend\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1360:\"<p><img src=\"http://alexking.org/wp-content/uploads/2012/10/wordcamp-denver-2012-510x220.jpg\" alt=\"WordCamp Denver\" width=\"480\" height=\"207\" class=\"alignnone size-medium-img wp-image-14634\" /></p>\n<p>If you haven&#8217;t already gotten your tickets for <a href=\"http://2012.denver.wordcamp.org/\">WordCamp Denver</a>, there are still a few left. <a href=\"http://2012.denver.wordcamp.org/tickets/\">Go grab one now</a> then come back and read the rest of this &#8211; it&#8217;s only $20 and you get a t-shirt!</p>\n<p>I&#8217;m looking forward to giving my presentation: <em>Core Competency: Things You Might Not Know about How WordPress Works (but should)</em>. I&#8217;ve got a few new additions to it based on things I learned from some recent development work.</p>\n<p>If you&#8217;re planning to attend WordCamp Denver (or any other WordCamp), consider taking a moment to read <a href=\"http://alexking.org/blog/2010/07/06/how-to-get-the-most-from-wordcamp\">Getting the Most From WordCamp</a>. I wrote it a couple years back just before WordCamp Boulder 2010, but it&#8217;s still quite relevant.</p>\n<p>Big thanks to <a href=\"http://alternate.org/\">Kevin</a> for taking the reins and organizing this year&#8217;s WordCamp. Putting on a community conference is a lot of work (I say, having helped coordinate WordCamp Denver 2009 and WordCamp Boulder 2010).</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Oct 2012 20:21:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 10/8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12080\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/RZKd-UPg8xk/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1297:\"<p><img class=\"alignnone size-full wp-image-12081\" title=\"minimalize\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/10/minimalize.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/minimalizine\"><strong>Minimalizine</strong></a> is a simple and responsive theme.</p>\n<p><img class=\"alignnone size-full wp-image-12082\" title=\"reflection\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/10/reflection.jpg\" alt=\"\" width=\"150\" height=\"112\" /></p>\n<p><a href=\"http://emptynestthemes.com/2012/10/07/reflection-wordpress-website-theme/\"><strong>Reflection</strong></a> is an attractive, clean, professional, and neutral theme.</p>\n<p><img class=\"alignnone size-full wp-image-12083\" title=\"somethingfishy\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/10/somethingfishy.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://carolinethemes.com/2012/10/06/something-fishy/\"><strong>Something Fishy</strong></a> is an illustrated landscape theme with parallax scrolling effects, a responsive, mobile-friendly layout, featured images, multiple widget areas, custom menu support, and a whole lotta cute.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/RZKd-UPg8xk\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Oct 2012 14:30:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WordPress.tv: Vid Luther: Why Your WordPress Site is Slow, and How to Fix It\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13668\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://wordpress.tv/2012/10/06/vid-luther-why-your-wordpress-site-is-slow-and-how-to-fix-it/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:687:\"<div id=\"v-BsrmXODz-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13668/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13668/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13668&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/06/vid-luther-why-your-wordpress-site-is-slow-and-how-to-fix-it/\"><img alt=\"VidLuther-SD 24 No Gamma Correction 800kbits.mov\" src=\"http://videos.videopress.com/BsrmXODz/video-8dc3f75f8f_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 07 Oct 2012 03:56:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WordPress.tv: Brad Parbs: Responsive Design Primer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13619\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.tv/2012/10/06/brad-parbs-responsive-design-primer/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:662:\"<div id=\"v-JB7jLEG5-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13619/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13619/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13619&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/06/brad-parbs-responsive-design-primer/\"><img alt=\"BradParbs-SD 24 No Gamma Correction 800kbits.mov\" src=\"http://videos.videopress.com/JB7jLEG5/video-d2640d2dcc_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Oct 2012 19:54:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Matt: Bitcoin and decentralization\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=41956\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://ma.tt/2012/10/bitcoin-and-decentralization/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"<p><a href=\"http://paulbohm.com/articles/bitcoins-value-is-decentralization/\">The value of Bitcoin is in its decentralization</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Oct 2012 19:53:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 10/6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12072\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/7l2qhumvSyY/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1616:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/custom-javascript-editor/\"><strong>Custom Javascript Editor</strong></a> allows you to add custom Javascript to your site from an editor in the WordPress admin.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/twitter2posts/\"><strong>Twitter2Posts</strong></a> imports tweets from your Twitter account as posts within a special category.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wpsocialstats/\"><strong>WP Social Stats</strong></a> is a powerful social analytics tool that tracks the performance of your blog posts and pages at Facebook, Twitter, Google+, Pinterest, and Stumbleupon.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/camptix/\"><strong>CampTix Event Ticketing</strong></a> is an easy to use and flexible event ticketing plugin.</p>\n<p><a href=\"http://jetpack.me/\"><strong>Jetpack</strong></a> allows you to supercharge your WordPress site with powerful features previously only available to WordPress.com users.</p>\n<p><a href=\"http://developer.tinypass.com/main/wordpress\"><strong>Tinypass</strong></a> is a simple, powerful plugin that allows any online publisher to easily sell access to any type of content, whether it&#8217;s a blog post, a site subscription, a digital download, or even a pay-per-view video.</p>\n<p><a href=\"http://ocaoimh.ie/wp-super-cache/\"><strong>WP Super Cache</strong></a> is a very fast caching engine for WordPress that produces static html files.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/7l2qhumvSyY\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Oct 2012 15:00:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WordPress.tv: Kate Carruthers: Your Blog, Your Brand\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13608\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.tv/2012/10/06/kate-carruthers-your-blog-your-brand/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:634:\"<div id=\"v-FzlG0LIz-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13608/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13608/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13608&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/06/kate-carruthers-your-blog-your-brand/\"><img alt=\"Kate-Caruthers-.mov\" src=\"http://videos.videopress.com/FzlG0LIz/video-133e07d4c7_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Oct 2012 13:53:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WordPress.tv: Kimanzi T Constable: The Power of Your Story Through WordPress and Social Media\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13585\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"http://wordpress.tv/2012/10/05/kimanzi-t-constable-the-power-of-your-story-through-wordpress-and-social-media/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:691:\"<div id=\"v-ZuNVTuyy-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13585/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13585/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13585&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/05/kimanzi-t-constable-the-power-of-your-story-through-wordpress-and-social-media/\"><img alt=\"Kimanzi-Constable-PowerofStory.mov\" src=\"http://videos.videopress.com/ZuNVTuyy/video-6a05848379_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Oct 2012 03:51:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WordPress.tv: Anthony Hortin: Getting to Grips with Firebug\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13589\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://wordpress.tv/2012/10/05/anthony-hortin-getting-to-grips-with-firebug/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:649:\"<div id=\"v-9UnEQj4N-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13589/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13589/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13589&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/05/anthony-hortin-getting-to-grips-with-firebug/\"><img alt=\"Anthony-Hortin-Firebug.mov\" src=\"http://videos.videopress.com/9UnEQj4N/video-4fe0c3d85c_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Oct 2012 19:50:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Weblog Tools Collection: Slight Under-the-Hood Improvements plus Jetpack Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12059\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/wvp3yBJVAjI/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3438:\"<p>You may not notice offhand, but we made some rather significant under-the-hood changes over the weekend. Despite often drooling like fan boys over the latest and greatest <a href=\"http://wordpress.org\">WordPress</a> features, much of this theme has been hard-coded. For those of you who aren&#8217;t familiar with what &#8220;hard-coded&#8221; is, it means that the sidebar was just HTML in the theme&#8217;s sidebar template, not <a href=\"https://codex.wordpress.org/WordPress_Widgets\">widgets</a>, and the navigation menu was just HTML in the theme&#8217;s header template, not a <a href=\"http://codex.wordpress.org/Appearance_Menus_SubPanel\">custom menu</a>. Why did we do this? Because it was easy, fast, and we didn&#8217;t need to change anything.</p>\n<p>Well, as WordPress continues to mature, more features are implemented as widgets. As we began desiring some of these, it became clear that the sidebar needed to be widgetized, and the existing modules (or non-widgets) needed to be switched over to widgets. Are you stuck with a theme that isn&#8217;t widgetized? If so, don&#8217;t worry, it&#8217;s really easy to <a href=\"http://codex.wordpress.org/Widgetizing_Themes\">widgetize your theme</a>, and most existing HTML modules can simple be added as a text widget.</p>\n<p>As for custom menus, we&#8217;re starting to see new features that rely on established menus. For example, <a href=\"http://jetpack.me/2012/09/27/jetpack-1-8-mobile-theme/\">Jetpack&#8217;s new mobile theme</a> uses your primary custom menu. Since we just switched to that mobile theme, it was time to do away with the hard-coded menu too. <a href=\"http://codex.wordpress.org/Navigation_Menus\">Adding custom menus</a> to your theme is a bit more complicated, but we&#8217;ll get to that later.</p>\n<p>The last bit of the customization, and probably the most noticeable, was adding support for <a href=\"http://jetpack.me/2012/06/14/jetpack-comments-now-available/\">Jetpack Comments</a>. I know, Jetpack Comments is supposed to work out of the box, but I think this theme is a bit older than they intended. If you activate Jetpack Comments and don&#8217;t see any change, check your theme&#8217;s comments template, and replace the old-fashioned comments form elements with <a href=\"http://codex.wordpress.org/Function_Reference/comment_form\">the super-handy comment_form tag</a>.</p>\n<p>So, what&#8217;s the best way to do all the above? Well, I don&#8217;t proclaim to be an expert, which is why I always consult the work that has already been done by experts, like the two most recent default themes, <a href=\"http://wordpress.org/extend/themes/twentyeleven\">Twenty Eleven</a> and <a href=\"http://wordpress.org/extend/themes/twentytwelve\">Twenty Twelve</a>. In my humble opinion, the best way to tackle upgrades like this (and really the best way to learn almost anything) is to directly compare your theme&#8217;s template to a more modern theme&#8217;s template. Once you isolate the area to change, the differences should be readily apparent, and the reason for the change becomes obvious (maybe after a bit of extra Googling). Beyond that, it&#8217;s just a few extra minutes of trial and error as you basically copy and paste the good code and make it work with your overall design. It&#8217;s fun, and you learn a lot while doing it.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/wvp3yBJVAjI\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Oct 2012 14:30:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WordPress.tv: Tracey Kemp: Demystifying Custom Post Types and Taxonomies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13623\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://wordpress.tv/2012/10/05/tracey-kemp-demystifying-custom-post-types-and-taxonomies/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:651:\"<div id=\"v-rcI9igAd-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13623/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13623/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13623&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/05/tracey-kemp-demystifying-custom-post-types-and-taxonomies/\"><img alt=\"Tracey-Kemp.mov\" src=\"http://videos.videopress.com/rcI9igAd/video-cb1009c69b_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Oct 2012 13:49:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WordPress.tv: Becky Davis: Freelance WordPress Lessons Learned\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13625\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://wordpress.tv/2012/10/04/becky-davis-freelance-wordpress-lessons-learned/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:675:\"<div id=\"v-R5PnRJ0H-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13625/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13625/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13625&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/04/becky-davis-freelance-wordpress-lessons-learned/\"><img alt=\"BeckyDavis-SD 24 No Gamma Correction 800kbits.mov\" src=\"http://videos.videopress.com/R5PnRJ0H/video-cabf5e4a06_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Oct 2012 03:48:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WordPress.tv: Jeff Waugh: TurboPress: The High Performance Guide to WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13751\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wordpress.tv/2012/10/04/jeff-waugh-turbopress-the-high-performance-guide-to-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:654:\"<div id=\"v-U9dgBrZg-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13751/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13751/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13751&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/04/jeff-waugh-turbopress-the-high-performance-guide-to-wordpress/\"><img alt=\"Jeff-Waugh.mov\" src=\"http://videos.videopress.com/U9dgBrZg/video-f31ddef4bc_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Oct 2012 21:47:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Donncha: WP Super Cache 1.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://ocaoimh.ie/?p=89497891\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://ocaoimh.ie/2012/10/04/wp-super-cache-1-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4299:\"<p><strong>UPDATE!</strong> I have just updated the plugin version number to 1.2. Thanks to everyone who tested it!</p>\n<p>A new version of <a href=\"http://ocaoimh.ie/wp-super-cache/\">WP Super Cache</a> is <strike>almost</strike> out and here are the changes in this full page caching plugin for WordPress.</p>\n<p><strike>OH! Hang on. Almost out? Yeah. I&#8217;m going to release it tomorrow but I would love a couple of hardy folks to try it first. People on the forums have been using <a href=\"http://ocaoimh.ie/y/2o\">the development version</a> for several weeks without incident but I would really appreciate it if a few more tried it before the general public gets it. You know what to do, I don&#8217;t need to explain. Here&#8217;s <a href=\"http://downloads.wordpress.org/plugin/wp-super-cache.zip\">wp-super-cache.zip</a>. This is the version running on this very site right now and it&#8217;s very stable. Go at it! I&#8217;ll update this post in the morning, UTC. Thanks.</strike></p>\n<p>So, those changes eh?</p>\n<ul>\n<li>Garbage collection of old cache files is significantly improved. I added a scheduled job that keeps an eye on things and restarts the job if necessary. Also, if you enable caching from the Easy page garbage collection will be enabled too.</li>\n<li> Editors can delete single cached files from the admin bar now. (<a href=\"http://wordpress.org/support/topic/plugin-wp-super-cache-allow-editor-role-to-delete-cache?replies=8\">thread</a>)</li>\n<li> Fixed the cached page counter on the settings page (<a href=\"http://wordpress.org/support/topic/plugin-wp-super-cache-confusing-information-in-cached-pages-since?replies=2\">thread</a>)</li>\n<li> Some sites that updated to 1.0 experienced too much garbage collection. There are still stragglers out there who haven&#8217;t upgraded but that&#8217;s fixed now! (<a href=\"http://wordpress.org/support/topic/wp-super-cache-causes-high-doing_wp_cron-load?replies=3\">thread</a>)</li>\n<li> Supercached mobile files are now used as there was a tiny little typo that needed fixing. (<a href=\"http://wordpress.org/support/topic/plugin-wp-super-cache-why-_mobile-instead-of-mobile-after-wp_cache_check_mobile-action?replies=2\">thread</a>)</li>\n<li> If your site is in a directory and you saw problems updating a page then that should be fixed now. (<a href=\"http://wordpress.org/support/topic/plugin-wp-super-cache-wordpress-in-directory-and-cache-on-post-edit-not-removed?replies=3\">thread</a>)</li>\n<li> The deactivate hook has been changed so your configuration isn&#8217;t hosed when you upgrade. Unfortunately this will only happen <em>after</em> you do this upgrade.</li>\n<li> Some sites use custom cookies with the LOGGED_IN_COOKIE constant. Added support for that.</li>\n<li> Added support for WPTouch Pro, but it appears to be flaky still. Anyone have time to work on that? I don&#8217;t.</li>\n<li> Some sites had problems with scheduled posts. For some reason the plugin thought the post was in draft mode and then because it only checked the same post once, when the post magically became published the cache wasn&#8217;t cleared. That&#8217;s fixed, thanks to the debug logging of several patient users.</li>\n<li> And more bug fixes and translation updates.</li>\n</ul>\n<p>If you have problems the first place to look should be <a href=\"http://wordpress.org/support/plugin/wp-super-cache\">the forums</a> (or try <a href=\"http://wordpress.org/tags/wp-super-cache\">here</a> too where things lived for a <em>long</em> time). Chances are someone else had the same issue before you and maybe they fixed it.</p>\n <img src=\"http://ocaoimh.ie/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=89497891\" width=\"1\" height=\"1\" />\n<p><strong>Related Posts</strong><ul><li> <a href=\"http://ocaoimh.ie/2008/10/24/wp-super-cache-084-the-garbage-collector/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.4, the garbage collector\">WP Super Cache 0.8.4, the garbage collector</a></li><li> <a href=\"http://ocaoimh.ie/2009/01/09/wp-super-cache-087/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.7\">WP Super Cache 0.8.7</a></li><li> <a href=\"http://ocaoimh.ie/2010/02/08/wp-super-cache-099/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.9.9\">WP Super Cache 0.9.9</a></li></ul></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Oct 2012 21:15:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Dougal Campbell: The easiest way to share localhost over the web – Showoff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://dougal.gunters.org/?p=71875\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"http://dougal.gunters.org/blog/2012/10/04/the-easiest-way-to-share-localhost-over-the-web-showoff/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1135:\"<p><i>This could come in handy: showoff.io is a service that creates a temporary or permanent public URL alias which will tunnel to your localhost.You can map to a general port or a particular vhost. You can even use a DNS CNAME forwarded to a permanent share.io URL, giving you a static name which always points to your machine, even if you switch networks. There are specific instructions for using it with a local WordPress install, working around WP&#8217;s canonical URL redirection. Oh, and it works through any firewall that allows outgoing ssh (port 22) connections. I could see this being useful for very quickly setting up/tearing down temporary demos for web development clients.</i></p>\n<p><a href=\"https://showoff.io/\">The easiest way to share localhost over the web &#8211; Showoff</a></p>\n<p>Original Article: <a href=\"http://dougal.gunters.org/blog/2012/10/04/the-easiest-way-to-share-localhost-over-the-web-showoff/\">The easiest way to share localhost over the web &#8211; Showoff</a>\n<a href=\"http://dougal.gunters.org\">Dougal Campbell&#039;s geek ramblings - WordPress, web development, and world domination.</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Oct 2012 19:55:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Dougal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:130:\"WordPress.tv: Helen Hou-Sandi: How to Sneak Your Way into Being be A Rockstar WordPress Developer When Everyone Thinks You’re…\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13621\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:141:\"http://wordpress.tv/2012/10/04/helen-hou-sandi-how-to-sneak-your-way-into-being-be-a-rockstar-wordpress-developer-when-everyone-thinks-youre/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:740:\"<div id=\"v-tnvPcNda-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13621/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13621/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13621&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/04/helen-hou-sandi-how-to-sneak-your-way-into-being-be-a-rockstar-wordpress-developer-when-everyone-thinks-youre/\"><img alt=\"HelenHouSandi-SD 24 No Gamma Correction 800kbits.mov\" src=\"http://videos.videopress.com/tnvPcNda/video-c6c2188654_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Oct 2012 19:15:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WordPress.tv: Wil Brown: WordPress for n00bs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13610\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.tv/2012/10/04/wil-brown-wordpress-for-n00bs/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:621:\"<div id=\"v-2Vf0MN39-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13610/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13610/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13610&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/04/wil-brown-wordpress-for-n00bs/\"><img alt=\"Wil Brown.mov\" src=\"http://videos.videopress.com/2Vf0MN39/video-3a295b56b1_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Oct 2012 19:12:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Video Upload\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 10/4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12048\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/XS5t03g_Mqg/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1126:\"<p><img class=\"alignnone size-full wp-image-12051\" title=\"arbor\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/10/arbor.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://emptynestthemes.com/2012/10/02/arbor-wordpress-blog-theme/\"><strong>Arbor</strong></a> is a clean, highly readable theme with sans serif typography.</p>\n<p><img class=\"alignnone size-full wp-image-12049\" title=\"discussion\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/10/discussion.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/discussion\"><strong>Discussion</strong></a> is designed on a notice board using push pins and sheets.</p>\n<p><img class=\"alignnone size-full wp-image-12050\" title=\"sanfrancisco\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/10/sanfrancisco.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/san-francisco\"><strong>San Francisco</strong></a> is a mobile-optimized theme.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/XS5t03g_Mqg\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Oct 2012 15:00:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WordPress.tv: Jason McCreary: 21 Ways to Make WordPress Fast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13675\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.tv/2012/10/04/jason-mccreary-21-ways-to-make-wordpress-fast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:676:\"<div id=\"v-94GVITDC-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13675/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13675/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13675&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/04/jason-mccreary-21-ways-to-make-wordpress-fast/\"><img alt=\"JasonMcCreary-SD 24 No Gamma Correction 800kbits.mov\" src=\"http://videos.videopress.com/94GVITDC/video-f8fa759a03_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Oct 2012 13:11:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Video Upload\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Alex King: Big “Slash Sanity” Patch Unit Tests\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://alexking.org/?p=14549\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://alexking.org/blog/2012/10/04/big-slash-sanity-patch-unit-tests\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1381:\"<p>I was able to finish up<sup id=\"fnref:1\"><a href=\"http://alexking.org/blog/topic/wordpress/feed#fn:1\" rel=\"footnote\">1</a></sup> the unit tests to cover the various <a href=\"http://alexking.org/blog/2012/09/01/big-wordpress-patch-remove-stripslashes-from-api-functions\">&#8220;slashing&#8221; scenarios</a> that my <a href=\"http://core.trac.wordpress.org/ticket/21767\">big patch</a> is intended to address and <a href=\"http://unit-tests.trac.wordpress.org/ticket/131\">commit those last night</a>. With these in place, I&#8217;m hopeful the patch will be able to land for 3.5.  <img src=\"http://alexking.org/wp-content/themes/alexking.org-v3/smilies/ak_fingerscrossed.gif\" alt=\":fingerscrossed:\" class=\"wp-smiley\" /> </p>\n<p>Thanks in advance to anyone who is able to apply the patch and do some additional testing. I think it&#8217;s really important to get this change in, but it&#8217;s also important to make sure things don&#8217;t break as a result. Unit tests are a great first step, but they only test what we know might break (not things we didn&#8217;t consider).</p>\n<div class=\"footnotes\">\n<hr />\n<ol>\n<li id=\"fn:1\">\nI used the time on the plane to <a href=\"http://monktoberfest.com\">Monktoberfest</a> &#8211; I love how productive I can be on a plane.&#160;<a href=\"http://alexking.org/blog/topic/wordpress/feed#fnref:1\" rev=\"footnote\">&#8617;</a>\n</li>\n</ol>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Oct 2012 12:58:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WordPress.tv: Scott Offord: SEO for WordPress: How to Avoid Penalties from Google and Bing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13683\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"http://wordpress.tv/2012/10/03/scott-offord-seo-for-wordpress-how-to-avoid-penalties-from-google-and-bing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:703:\"<div id=\"v-aVVXnI2y-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13683/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13683/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13683&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/03/scott-offord-seo-for-wordpress-how-to-avoid-penalties-from-google-and-bing/\"><img alt=\"ScottOfford-SD 24 No Gamma Correction 800kbits.mov\" src=\"http://videos.videopress.com/aVVXnI2y/video-899c73f729_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Oct 2012 03:10:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Video Upload\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WordPress.tv: Matías Ventura: Diseñando un Theme con Underscores\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13687\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://wordpress.tv/2012/10/03/uploaded-video-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:621:\"<div id=\"v-oERFzYUy-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13687/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13687/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13687&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/03/uploaded-video-2/\"><img alt=\"20120825-MatiasVentura.mp4\" src=\"http://videos.videopress.com/oERFzYUy/video-9ea2dbb501_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Oct 2012 19:10:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Video Upload\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WordPress.tv: Ricardo Moraleida: Theme Review e Unit Test – “O” guia de boas práticas para temas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13689\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://wordpress.tv/2012/10/03/ricardo-moraleida/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:625:\"<div id=\"v-ubv2BYP7-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13689/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13689/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13689&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/03/ricardo-moraleida/\"><img alt=\"20120825-RicardoMoraleida.mp4\" src=\"http://videos.videopress.com/ubv2BYP7/video-cc963f0eb7_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Oct 2012 13:09:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Video Upload\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WordPress.tv: Anthony Cole: What Multisite can do for You\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13591\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.tv/2012/10/02/what-multisite-can-do-for-you/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:634:\"<div id=\"v-ZnfOvDSd-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13591/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13591/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13591&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/02/what-multisite-can-do-for-you/\"><img alt=\"Anthony-Cole-multisite.mov\" src=\"http://videos.videopress.com/ZnfOvDSd/video-ce1c324c06_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Oct 2012 03:49:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Video Upload\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress.tv: Brent Shepherd: Word to the Future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13582\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.tv/2012/10/02/brent-shepherd-word-to-the-future/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:646:\"<div id=\"v-haox1Q9w-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13582/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13582/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13582&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/02/brent-shepherd-word-to-the-future/\"><img alt=\"Brent-Shepherd-WordToTheFuture.mov\" src=\"http://videos.videopress.com/haox1Q9w/video-2c4e3b527d_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Oct 2012 22:48:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Video Upload\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 10/2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12042\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/BROfIR4dbmQ/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1198:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/advanced-browser-check/\"><strong>Advanced Browser Check</strong></a> gives you the option to give a visitor of your site a warning popup if they use a browser that you don&#8217;t support on your site.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/favorite-plugins-widget/\"><strong>Favorite Plugins Widget</strong></a> displays your favorite plugins from your WordPress.org profile along with star ratings and author info.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/thin-out-revisions/\"><strong>Thin Out Revisions</strong></a> helps you thin out post/page revisions manually.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/\"><strong>Yet Another Related Posts Plugin</strong></a> displays a list of related entries on your site and feeds based on a unique algorithm.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/ultimate-tinymce/\"><strong>Ultimate TinyMCE</strong></a> beefs up your visual editor with a plethora of advanced options.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/BROfIR4dbmQ\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Oct 2012 14:45:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WordPress.tv: Rafael Ehlers: E-commerce no WordPress utilizando PayPal e PagSeguro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13691\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"http://wordpress.tv/2012/10/02/rafael-ehlers-e-commerce-no-wordpress-utilizando-paypal-e-pagseguro/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:671:\"<div id=\"v-FJM1ojkZ-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13691/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13691/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13691&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/02/rafael-ehlers-e-commerce-no-wordpress-utilizando-paypal-e-pagseguro/\"><img alt=\"20120825-RafaelEhlers.mp4\" src=\"http://videos.videopress.com/FJM1ojkZ/video-1751f7388c_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Oct 2012 13:46:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Video Upload\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WordPress.tv: Diogenes Buarque Ianakiara: WordPress com Alta Performance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13700\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://wordpress.tv/2012/10/01/diogenes-buarque-ianakiara-wordpress-com-alta-performance/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:666:\"<div id=\"v-JfITcoBH-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13700/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13700/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13700&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/01/diogenes-buarque-ianakiara-wordpress-com-alta-performance/\"><img alt=\"20120825-DiogenesIanakiara.mp4\" src=\"http://videos.videopress.com/JfITcoBH/video-7857f05323_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Oct 2012 03:45:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Video Upload\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WordPress.tv: Bruno Borges: Malware e Segurança em WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13702\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.tv/2012/10/01/bruno-borges-malware-e-seguranca-em-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:654:\"<div id=\"v-vhQbXUy5-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13702/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13702/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13702&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/10/01/bruno-borges-malware-e-seguranca-em-wordpress/\"><img alt=\"20120825-BrunoBorges.mp4\" src=\"http://videos.videopress.com/vhQbXUy5/video-fbcead5748_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Oct 2012 22:38:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Video Upload\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Donncha: C64 fans will like this theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://ocaoimh.ie/?p=89497875\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://ocaoimh.ie/2012/10/01/c64-fans-will-like-this-theme/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1892:\"<p><img src=\"http://ocaoimh.ie/ocaoimh/2012/10/commodore-theme.png\" alt=\"\" title=\"Commodore C64 theme\" width=\"600\" height=\"458\" class=\"aligncenter size-full wp-image-89497876\" /></p>\n<p>If you&#8217;re a fan of that strikingly handsome and powerful computer, the Commodore 64, you will no doubt be itching to try this <a href=\"http://wordpress.org/extend/themes/commodore\">Commodore theme</a> for WordPress. It turns your blog into what every C64 owner saw when they powered on the computer. I&#8217;m disappointed it doesn&#8217;t retain the 40 character line but I guess some exceptions had to be made &#8220;in the name of progress&#8221;. We didn&#8217;t have Youtube back then either but if we did you can be sure it would be full of dodgy VHS copies of <a href=\"http://www.youtube.com/watch?v=SePNWYpb-NQ\">Glenroe</a> and Cheers.</p>\n<p>Of much more interest to a certain <em>demo</em>graphic would be a WordPress theme that embeds blog posts in an <a>Amiga intro</a> or C64 intro using HTML5? Someone will read a DYCP version of this post, right?</p>\n<p>(Thanks <a href=\"http://themeshaper.com/\">Ian</a> for the link!)</p>\n <img src=\"http://ocaoimh.ie/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=89497875\" width=\"1\" height=\"1\" />\n<p><strong>Related Posts</strong><ul><li> <a href=\"http://ocaoimh.ie/2011/08/02/batman-the-movie-theme-by-powerglove/\" rel=\"bookmark\" title=\"Permanent Link: Batman The Movie Theme by Powerglove\">Batman The Movie Theme by Powerglove</a></li><li> <a href=\"http://ocaoimh.ie/2008/04/08/the-best-way-to-test-new-wordpress-themes/\" rel=\"bookmark\" title=\"Permanent Link: The best way to test new WordPress themes\">The best way to test new WordPress themes</a></li><li> <a href=\"http://ocaoimh.ie/2004/10/05/wpmu-theme-switcher/\" rel=\"bookmark\" title=\"Permanent Link: WPMU Theme Switcher\">WPMU Theme Switcher</a></li></ul></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Oct 2012 17:06:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 9/30\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/iyzg7d1HPQA/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1203:\"<p><img class=\"alignnone size-full wp-image-12025\" title=\"brighteconomy\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/09/brighteconomy.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://emptynestthemes.com/2012/09/28/bright-economy-wordpress-theme-for-websites-or-blogs/\"><strong>Bright Economy</strong></a> is a simple, minimalist, highly readable theme with clean, sans serif typography.</p>\n<p><img class=\"alignnone size-full wp-image-12026\" title=\"runo\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/09/runo.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/runo-lite\"><strong>Runo Lite</strong></a> has been made especially for poets and writers.</p>\n<p><img class=\"alignnone size-full wp-image-12027\" title=\"twentytwelve\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/09/twentytwelve.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/twentytwelve\"><strong>Twenty Twelve</strong></a> is a fully responsive theme that looks great on any device.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/iyzg7d1HPQA\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 30 Sep 2012 14:30:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 9/28\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12014\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/cKYyqKUgEvU/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1371:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/automatic-updater/\"><strong>Automatic Updater</strong></a> will automatically download and install plugin, theme, and core updates as soon as they become available.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/html5-videos/\"><strong>HTML5 Videos</strong></a> allows you to easily embed HTML5 videos from the Media Library into posts and pages.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/automatic-post-tagger/\"><strong>Automatic Post Tagger</strong></a> automatically adds user-specified tags to posts.</p>\n<p><a href=\"http://jetpack.me/\"><strong>Jetpack</strong></a> allows you to supercharge your WordPress site with powerful features previously only available to WordPress.com users.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/pushover-notifications/\"><strong>Pushover Notifications</strong></a> allows your WordPress blog to send push notifications for events happening on your blog straight to your iOS/Android device.</p>\n<p><a href=\"http://yoast.com/wordpress/seo/\"><strong>WordPress SEO</strong></a> is an all in one solution to search engine optimize your WordPress blog: SEO titles, meta descriptions, XML sitemaps and much more.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/cKYyqKUgEvU\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Sep 2012 15:00:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"Dougal Campbell: WordPress Snippet: Add Uploadable File Types\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://dougal.gunters.org/?p=71707\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://dougal.gunters.org/blog/2012/09/28/wordpress-snippet-add-uploadable-file-types/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:836:\"<p>My <a href=\"http://dougal.gunters.org/plugins/documents-shortcode/\">Documents Shortcode</a> plugin lets you display uploaded attachments. WordPress limits what kinds of files you can upload, but you might need to upload additional types of files. Here&#8217;s an example of how to add new file types to the ones that WordPress will allow. In my case, I needed to upload a Keynote slideshow, which had the file extension <code>.key</code>:</p>\n<p>View the code on <a href=\"https://gist.github.com/3797807\">Gist</a>.</p>\n<p>&nbsp;</p>\n<p>Original Article: <a href=\"http://dougal.gunters.org/blog/2012/09/28/wordpress-snippet-add-uploadable-file-types/\">WordPress Snippet: Add Uploadable File Types</a>\n<a href=\"http://dougal.gunters.org\">Dougal Campbell&#039;s geek ramblings - WordPress, web development, and world domination.</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Sep 2012 04:05:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Dougal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Weblog Tools Collection: WordPress 3.5 Beta 1 and Twenty Twelve Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12010\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/Udo9e6hf1hc/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1497:\"<p><a href=\"http://wordpress.org/\">WordPress</a> 3.5 Beta 1 <a href=\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/\">has been released</a> and can be easily upgraded to with <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">the Beta Tester plugin</a>. This is the first beta release, so it&#8217;s not recommended for live sites, but plugin and theme developers, and anyone with a keen eye for bugs, are encouraged to try it out now.</p>\n<p>This new release includes tons of changes to how images are handled, a new color picker, keyboard navigation, support for favorited plugins from <a href=\"http://wordpress.org/extend/plugins/\">the official directory</a>, and much more.</p>\n<p>If you run into any bugs, please check the <a href=\"http://core.trac.wordpress.org/report/5\">known</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.5\">fixed</a> issues first, <a href=\"http://codex.wordpress.org/Reporting_Bugs\">report them</a> if they have not already been reported or fixed, and visit <a href=\"http://wordpress.org/support/forum/alphabeta\">the support forums</a> if you need any help.</p>\n<p><a href=\"http://wordpress.org/extend/themes/twentytwelve\">Twenty Twelve</a>, the new default theme for WordPress 3.5, has also been released separately and is available for anyone running WordPress 3.4.2 or higher.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/Udo9e6hf1hc\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Sep 2012 01:00:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Dev Blog: WordPress 3.5 Beta 1 (and a bonus!)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2443\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6594:\"<p>I&#8217;m excited to announce the availability of WordPress 3.5 Beta 1.</p>\n<p>This is software still in development and <strong>we <em>really</em> don’t recommend that you run it on a production site</strong> — set up a test site just to play with the new version. To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.5-beta-1.zip\">download the beta here</a> (zip).</p>\n<p>In just three short months, we&#8217;ve already made a few hundred changes to improve your WordPress experience. The biggest thing we&#8217;ve been working on is overhauling the media experience from the ground up. We&#8217;ve made it all fair game: How you upload photos, arrange galleries, insert images into posts, and more. It&#8217;s still rough around the edges and some pieces are missing — which means now is the <em>perfect</em> time to test it out, report issues, and help shape our headline feature.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.5\">everything we&#8217;ve fixed</a> so far.</p>\n<p>Here&#8217;s some more of what&#8217;s new:</p>\n<ul>\n<li><strong>Appearance: </strong>A simplified welcome screen. A new color picker. And the all-HiDPI (retina) dashboard.</li>\n<li><strong>Accessibility:</strong> Keyboard navigation and screen reader support have both been improved.</li>\n<li><strong>Plugins: </strong>You can browse and install plugins you&#8217;ve marked as favorites on WordPress.org, directly from your dashboard.</li>\n<li><strong>Mobile: </strong>It&#8217;ll be easier to link up your WordPress install with <a href=\"http://wordpress.org/extend/mobile/\">our mobile apps</a>, as XML-RPC is now enabled by default.</li>\n<li><strong>Links: </strong>We&#8217;ve hidden the Link Manager for new installs. (Don&#8217;t worry, <a href=\"http://wordpress.org/extend/plugins/link-manager/\">there&#8217;s a plugin for that</a>.)</li>\n</ul>\n<p><strong>Developers: </strong>We love you. We do. And one of the things we strive to do with every release is be compatible with all existing plugins and themes. To make sure we don&#8217;t break anything, we need your help. <strong>Please, please test your plugins and themes against 3.5.</strong> If something isn&#8217;t quite right, please let us know. (Chances are, it wasn&#8217;t intentional.) And despite all of the changes to media, we&#8217;re still aiming to be backwards compatible with plugins that make changes to the existing media library. It&#8217;s a tall task, and it means we need your help.</p>\n<p>Here&#8217;s some more things we think developers will enjoy (and should test their plugins and themes against):</p>\n<ul>\n<li><strong>External libraries updated:</strong> TinyMCE  3.5.6. SimplePie 1.3. jQuery 1.8.2. jQuery UI 1.9 (and it&#8217;s not even released yet). We&#8217;ve also added Backbone 0.9.2 and Underscore 1.3.3, and you can use protocol-relative links when enqueueing scripts and styles. (<a href=\"http://core.trac.wordpress.org/ticket/16560\">#16560</a>)</li>\n<li><strong>WP Query:</strong> You can now ask to receive posts in the order specified by <code>post__in</code>. (<a href=\"http://core.trac.wordpress.org/ticket/13729\">#13729</a>)</li>\n<li><strong>XML-RPC:</strong> New user management, profile editing, and post revision methods. We&#8217;ve also removed AtomPub. (<a href=\"http://core.trac.wordpress.org/ticket/18428\">#18428</a>, <a href=\"http://core.trac.wordpress.org/ticket/21397\">#21397</a>, <a href=\"http://core.trac.wordpress.org/ticket/21866\">#21866</a>)</li>\n<li><strong>Multisite: </strong>switch_to_blog() is now used in more places, is faster, and more reliable. Also: You can now use multisite in a subdirectory, and uploaded files no longer go through ms-files (for new installs). (<a href=\"http://core.trac.wordpress.org/ticket/21434\">#21434</a>, <a href=\"http://core.trac.wordpress.org/ticket/19796\">#19796</a>, <a href=\"http://core.trac.wordpress.org/ticket/19235\">#19235</a>)</li>\n<li><strong>TinyMCE: </strong>We&#8217;ve added API support for &#8220;views&#8221; which you can use to offer previews and interaction of elements from the visual editor. (<a href=\"http://core.trac.wordpress.org/ticket/21812\">#21812</a>)</li>\n<li><strong>Posts API: </strong>Major performance improvements when working with hierarchies of pages and post ancestors. Also, you can now &#8220;turn on&#8221; native custom columns for taxonomies on edit post screens. (<a href=\"http://core.trac.wordpress.org/ticket/11399\">#11399</a>, <a href=\"http://core.trac.wordpress.org/ticket/21309\">#21309</a>, <a href=\"http://core.trac.wordpress.org/ticket/21240\">#21240</a>)</li>\n<li><strong>Comments API:</strong> Search for comments of a particular status, or with a meta query (same as with WP_Query). (<a href=\"http://core.trac.wordpress.org/ticket/21101\">#21101</a>, <a href=\"http://core.trac.wordpress.org/ticket/21003\">#21003</a>)</li>\n<li><strong>oEmbed: </strong>We&#8217;ve added support for a few oEmbed providers, and we now handle SSL links. (<a href=\"http://core.trac.wordpress.org/ticket/15734\">#15734</a>, <a href=\"http://core.trac.wordpress.org/ticket/21635\">#21635</a>, <a href=\"http://core.trac.wordpress.org/ticket/16996\">#16996</a>, <a href=\"http://core.trac.wordpress.org/ticket/20102\">#20102</a>)</li>\n</ul>\n<p>We&#8217;re looking forward to your feedback. If you break it (find a bug), please report it, and if you’re a developer, try to help us fix it. We&#8217;ve already had more than 200 contributors to version 3.5 — come join us!</p>\n<h3>And as promised, a bonus:</h3>\n<p>We&#8217;re planning a December 5 release for WordPress 3.5. But, we have a special offering for you, today. The newest default theme for WordPress, <strong>Twenty</strong><strong> Twelve</strong>, is now <a href=\"http://wordpress.org/extend/themes/twentytwelve\">available for download</a> from the WordPress themes directory. It&#8217;s a gorgeous and fully responsive theme, and it works with WordPress 3.4.2. Take it for a spin!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Sep 2012 22:37:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Lorelle on WP: How Many is Too Many WordPress Plugins?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://lorelle.wordpress.com/?p=6663\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://lorelle.wordpress.com/2012/09/27/how-many-is-too-many-wordpress-plugins/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:517:\"In &#8220;How Many WordPress Plugins Should You Install on Your Site?&#8221; WPBeginner asks a question I bring up in my workshops, training programs, and college courses: How many WordPress Plugins are too many. The article brings up some valid points worth considering when choosing WordPress Plugins. Are WordPress Plugins a security risk? How would you [...]<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=6663&subd=lorelle&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Sep 2012 21:17:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Lorelle VanFossen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Dougal Campbell: Presentation: Higher Order WordPress Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://dougal.gunters.org/?p=71607\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://dougal.gunters.org/blog/2012/09/27/presentation-higher-order-wordpress-security/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2176:\"<p>Last night, I gave a presentation at the <a href=\"http://www.meetup.com/wordpress-atlanta/events/82052482/\">Atlanta WordPress Users meetup</a>, titled &#8220;Higher Order WordPress Security&#8221;. While the presentation looks at security from the point-of-view of a WordPress site owner, the aim is to look at the bigger picture. There are many links in the security chain, and it helps to understand how the pieces fit together.</p>\n<p><ins datetime=\"2012-10-01T15:22:20+00:00\"><strong>NOTE</strong>: I&#8217;ve noticed that (once again) SlideShare has dropped several key images from the presentation I uploaded there. Your best option for getting all of the content is to download one of the files I have made available below.</ins></p>\n<p> \n<div> <strong> <a href=\"http://www.slideshare.net/DougalCampbell/higher-order-wordpress-security\" title=\"Higher Order WordPress Security\" target=\"_blank\">Higher Order WordPress Security</a> </strong> from <strong><a href=\"http://www.slideshare.net/DougalCampbell\" target=\"_blank\">Dougal Campbell</a></strong> </div>\n<p>&nbsp;</p>\n<p>On the SlideShare site, click the &#8220;Notes on Slide&#8221; tab underneath the slideshow to see my presenter&#8217;s notes. Or if you have Apple Keynote, you can use the &#8220;Save file&#8221; button at the top to download my original file.</p>\n<p>Or download them here:</p>\n<ul class=\"dc_documents\">\n<li class=\"ppt\"><a href=\"http://maxcdn.gunters.org/wordpress/wp-content/uploads/2012/09/WordPress-Security1.ppt?c9421e\">WordPress-Security (PowerPoint)</a></li>\n<li class=\"pdf\"><a href=\"http://maxcdn.gunters.org/wordpress/wp-content/uploads/2012/09/WordPress-Security1.pdf?c9421e\">WordPress-Security (PDF)</a></li>\n<li class=\"key\"><a href=\"http://maxcdn.gunters.org/wordpress/wp-content/uploads/2012/09/WordPress-Security1.key\">WordPress-Security (Keynote)</a></li>\n</ul>\n\n<p>&nbsp;</p>\n<p>Original Article: <a href=\"http://dougal.gunters.org/blog/2012/09/27/presentation-higher-order-wordpress-security/\">Presentation: Higher Order WordPress Security</a>\n<a href=\"http://dougal.gunters.org\">Dougal Campbell&#039;s geek ramblings - WordPress, web development, and world domination.</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Sep 2012 20:57:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Dougal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Lorelle on WP: Introduction to WordPress Course at Clark College Continuing Education\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://lorelle.wordpress.com/?p=6644\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"http://lorelle.wordpress.com/2012/09/26/introduction-to-wordpress-course-at-clark-college-continuing-education/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:521:\"Starting October 16, 2012, I&#8217;m teaching the Introduction to WordPress at Clark College Corporate and Continuing Education in Vancouver, Washington. This is the course many of you have been waiting for &#8211; affordable and covering the basics you need to know about WordPress. The CTEC 280 Clark College WordPress Introduction course continues as a four [...]<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=6644&subd=lorelle&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Sep 2012 19:18:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Lorelle VanFossen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 9/26\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/mLnE6h7xkmQ/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1434:\"<p><img class=\"alignnone size-full wp-image-12002\" title=\"gamepress\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/09/gamepress.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/gamepress\"><strong>GamePress</strong></a> is a gaming-oriented theme.</p>\n<p><img class=\"alignnone size-full wp-image-12003\" title=\"keiran\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/09/keiran.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/keiran\"><strong>Keiran</strong></a> is a clean, dark, two-column theme.</p>\n<p><img class=\"alignnone size-full wp-image-12001\" title=\"murmur\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/09/murmur.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://devpress.com/themes/murmur/\"><strong>Murmur</strong></a> is a portfolio theme for showcasing web design and photography projects.</p>\n<p><img class=\"alignnone size-full wp-image-12004\" title=\"rustic\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/09/rustic.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://emptynestthemes.com/2012/09/20/rustic-wordpress-website-theme/\"><strong>Rustic</strong></a> creates a natural, clean mood set against a textured stone wall of mixed colors.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/mLnE6h7xkmQ\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Sep 2012 14:45:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WordPress.tv: Troy Dean: How to Get Paid What You’re Worth\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13627\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.tv/2012/09/25/how-to-get-paid-what-youre-worth/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:623:\"<div id=\"v-aw4FNPh7-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13627/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13627/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13627&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2012/09/25/how-to-get-paid-what-youre-worth/\"><img alt=\"TroyDean.mov\" src=\"http://videos.videopress.com/aw4FNPh7/video-8afe4654de_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Sep 2012 20:59:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Video Upload\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 9/24\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=11997\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/hr-WUNt2QEI/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:881:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/automatic-post-tagger/\"><strong>Automatic Post Tagger</strong></a> automatically adds user-specified tags to posts.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/sitefeedbackcom-feedback-tab/\"><strong>SiteFeedback.com Feedback Tab</strong></a> lets you add a feedback tab at the bottom of your site pages to collect user feedback.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/facebook/\"><strong>Facebook</strong></a> makes your site deeply social by integrating functionality from Facebook.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/qtranslate/\"><strong>qTranslate</strong></a> adds userfriendly multilingual content management and translation support.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/hr-WUNt2QEI\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Sep 2012 14:45:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 9/22\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=11988\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/1Uz0nvKHtco/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1463:\"<p><img class=\"alignnone size-full wp-image-11989\" title=\"convention\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/09/convention.jpg\" alt=\"\" width=\"150\" height=\"99\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/convention\"><strong>Convention</strong></a> has lots of great features like post thumbnails and custom menus.</p>\n<p><img class=\"alignnone size-full wp-image-11994\" title=\"ipin\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/09/ipin.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://ericulous.com/2012/09/21/wp-theme-ipin-pinterest-clone/\"><strong>iPin</strong></a> is a Pinterest clone theme.</p>\n<p><img class=\"alignnone size-full wp-image-11990\" title=\"light\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/09/light.jpg\" alt=\"\" width=\"150\" height=\"112\" /></p>\n<p><a href=\"http://emptynestthemes.com/2012/09/16/light-wordpress-theme/\"><strong>Light</strong></a> is designed with readability in mind.</p>\n<p><img class=\"alignnone size-full wp-image-11991\" title=\"livingjournal\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2012/09/livingjournal.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/living-journal\"><strong>Living Journal</strong></a> is a very simple and minimalistic theme with nice attention to details.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/1Uz0nvKHtco\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 22 Sep 2012 15:15:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Alex King: WordPress “stripslashes” Patch Progress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://alexking.org/?p=14455\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://alexking.org/blog/2012/09/21/wordpress-stripslashes-patch-progress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2454:\"<p><a href=\"http://alexking.org/blog/2012/09/01/big-wordpress-patch-remove-stripslashes-from-api-functions\">The patch I posted about previously</a> to improve the slash handling within WordPress for 3.5 (which fixes some core bugs and fixes <em>tons</em> of developer custom code bugs) is still looking promising. After <a href=\"http://make.wordpress.org/core/handbook/automated-testing/\">setting up my unit testing environment</a> a few days back and talking with <a href=\"http://wizardmode.com\">a colleague</a> to verify the proper approach, I began actually writing the tests today.</p>\n<p><a href=\"http://nacin.com\">Nacin</a> quite reasonably <a href=\"http://core.trac.wordpress.org/ticket/21767#comment:13\">stated</a>:</p>\n<blockquote><p>\n  This can&#8217;t go near core without tests, and it is going to be difficult to even understand many of the issues presented here without tests.\n</p></blockquote>\n<p>He&#8217;s right. There&#8217;s no way the core team should take my word for it that I tested the changes thoroughly. A set of changes this big, while very important fixes, also run the risk of introducing bugs that would affect literally millions of sites. Unit tests are a necessity here.</p>\n<p>I&#8217;ve <a href=\"http://unit-tests.trac.wordpress.org/ticket/131\">opened a ticket for the unit test changes</a> and am <a href=\"https://docs.google.com/spreadsheet/ccc?key=0AqJlMmZg82o_dGoxT2pvbTY2VmY3VWpscEZFb1dLSGc#gid=0\">tracking the general test coverage</a> to give better visibility into what is being tested. The good news is the tests all pass so far <em>with</em> the new core patch applied and fail on trunk (without the patch). Exactly what should be happening.</p>\n<p>I&#8217;d love additional help creating tests as well as testing the overall core patch to help make sure edge cases aren&#8217;t getting missed. The sooner this can land in trunk the sooner it gets widespread testing. Getting it in early in the release cycle is definitely a good idea.</p>\n<hr />\n<p>A quick summary of the issue: without this patch, developers that are making calls to &#8220;model&#8221; functions such as <code>wp_insert_post()</code> (comment, term, user, meta, etc.) without manually adding slashes to the data they pass in are losing data in certain situations. These functions all expect slashed data &#8211; this patch reverses this and moves the &#8220;stripslashes&#8221; actions to the &#8220;controller&#8221; functions instead.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Sep 2012 07:03:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 11 Oct 2012 23:38:09 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:5:\"95354\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 11 Oct 2012 23:30:11 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 139\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20111015034325\";}","no");
INSERT INTO wp_options VALUES("2582","_transient_timeout_feed_42c0b09d1a19fc19e012ce008912cc9c","1350041887","no");
INSERT INTO wp_options VALUES("2583","_transient_feed_42c0b09d1a19fc19e012ce008912cc9c","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:4:\"\n  \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:33:\"\n    \n    \n    \n    \n    \n    \n  \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"link:http://www.livingimagephotography.com.au/ - Google Blog Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"http://www.google.com/search?ie=utf-8&q=link:http://www.livingimagephotography.com.au/&tbm=blg&tbs=sbd:1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Your search - <b>link:http://www.livingimagephotography.com.au/</b> - did not match any documents.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://a9.com/-/spec/opensearch/1.1/\";a:3:{s:12:\"totalResults\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:10:\"startIndex\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:12:\"itemsPerPage\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:12:\"content-type\";s:28:\"text/xml; charset=ISO-8859-1\";s:4:\"date\";s:29:\"Thu, 11 Oct 2012 23:38:08 GMT\";s:7:\"expires\";s:2:\"-1\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:10:\"set-cookie\";a:2:{i:0;s:143:\"PREF=ID=e7d7d0dc76c73852:FF=0:TM=1349998688:LM=1349998688:S=z9XlZ_Mp6B7r7Wkq; expires=Sat, 11-Oct-2014 23:38:08 GMT; path=/; domain=.google.com\";i:1;s:212:\"NID=64=a1QZ_X_C1D1oWBAUrahS7tEwTkpYSOhFQ1YOqSFOQ1la6_rEasAj2kMB_33vFnDL3O6tinYt8Xqr-ngoREuRDWa08Gx43GZ2sQQ_7qFGDYZQmZwcHUNSTG81uYr5Gwac; expires=Fri, 12-Apr-2013 23:38:08 GMT; path=/; domain=.google.com; HttpOnly\";}s:3:\"p3p\";s:122:\"CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"\";s:6:\"server\";s:3:\"gws\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";}s:5:\"build\";s:14:\"20111015034325\";}","no");
INSERT INTO wp_options VALUES("2589","_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:50:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Sep 2012 22:37:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/?v=3.5-beta1-22150\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 3.5 Beta 1 (and a bonus!)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Sep 2012 22:37:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2443\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:376:\"I&#8217;m excited to announce the availability of WordPress 3.5 Beta 1. This is software still in development and we really don’t recommend that you run it on a production site — set up a test site just to play with the new version. To test WordPress 3.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6603:\"<p>I&#8217;m excited to announce the availability of WordPress 3.5 Beta 1.</p>\n<p>This is software still in development and <strong>we <em>really</em> don’t recommend that you run it on a production site</strong> — set up a test site just to play with the new version. To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.5-beta-1.zip\">download the beta here</a> (zip).</p>\n<p>In just three short months, we&#8217;ve already made a few hundred changes to improve your WordPress experience. The biggest thing we&#8217;ve been working on is overhauling the media experience from the ground up. We&#8217;ve made it all fair game: How you upload photos, arrange galleries, insert images into posts, and more. It&#8217;s still rough around the edges and some pieces are missing — which means now is the <em>perfect</em> time to test it out, report issues, and help shape our headline feature.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=3.5\">everything we&#8217;ve fixed</a> so far.</p>\n<p>Here&#8217;s some more of what&#8217;s new:</p>\n<ul>\n<li><strong>Appearance: </strong>A simplified welcome screen. A new color picker. And the all-HiDPI (retina) dashboard.</li>\n<li><strong>Accessibility:</strong> Keyboard navigation and screen reader support have both been improved.</li>\n<li><strong>Plugins: </strong>You can browse and install plugins you&#8217;ve marked as favorites on WordPress.org, directly from your dashboard.</li>\n<li><strong>Mobile: </strong>It&#8217;ll be easier to link up your WordPress install with <a href=\"http://wordpress.org/extend/mobile/\">our mobile apps</a>, as XML-RPC is now enabled by default.</li>\n<li><strong>Links: </strong>We&#8217;ve hidden the Link Manager for new installs. (Don&#8217;t worry, <a href=\"http://wordpress.org/extend/plugins/link-manager/\">there&#8217;s a plugin for that</a>.)</li>\n</ul>\n<p><strong>Developers: </strong>We love you. We do. And one of the things we strive to do with every release is be compatible with all existing plugins and themes. To make sure we don&#8217;t break anything, we need your help. <strong>Please, please test your plugins and themes against 3.5.</strong> If something isn&#8217;t quite right, please let us know. (Chances are, it wasn&#8217;t intentional.) And despite all of the changes to media, we&#8217;re still aiming to be backwards compatible with plugins that make changes to the existing media library. It&#8217;s a tall task, and it means we need your help.</p>\n<p>Here&#8217;s some more things we think developers will enjoy (and should test their plugins and themes against):</p>\n<ul>\n<li><strong>External libraries updated:</strong> TinyMCE  3.5.6. SimplePie 1.3. jQuery 1.8.2. jQuery UI 1.9 (and it&#8217;s not even released yet). We&#8217;ve also added Backbone 0.9.2 and Underscore 1.3.3, and you can use protocol-relative links when enqueueing scripts and styles. (<a href=\"http://core.trac.wordpress.org/ticket/16560\">#16560</a>)</li>\n<li><strong>WP Query:</strong> You can now ask to receive posts in the order specified by <code>post__in</code>. (<a href=\"http://core.trac.wordpress.org/ticket/13729\">#13729</a>)</li>\n<li><strong>XML-RPC:</strong> New user management, profile editing, and post revision methods. We&#8217;ve also removed AtomPub. (<a href=\"http://core.trac.wordpress.org/ticket/18428\">#18428</a>, <a href=\"http://core.trac.wordpress.org/ticket/21397\">#21397</a>, <a href=\"http://core.trac.wordpress.org/ticket/21866\">#21866</a>)</li>\n<li><strong>Multisite: </strong>switch_to_blog() is now used in more places, is faster, and more reliable. Also: You can now use multisite in a subdirectory, and uploaded files no longer go through ms-files (for new installs). (<a href=\"http://core.trac.wordpress.org/ticket/21434\">#21434</a>, <a href=\"http://core.trac.wordpress.org/ticket/19796\">#19796</a>, <a href=\"http://core.trac.wordpress.org/ticket/19235\">#19235</a>)</li>\n<li><strong>TinyMCE: </strong>We&#8217;ve added API support for &#8220;views&#8221; which you can use to offer previews and interaction of elements from the visual editor. (<a href=\"http://core.trac.wordpress.org/ticket/21812\">#21812</a>)</li>\n<li><strong>Posts API: </strong>Major performance improvements when working with hierarchies of pages and post ancestors. Also, you can now &#8220;turn on&#8221; native custom columns for taxonomies on edit post screens. (<a href=\"http://core.trac.wordpress.org/ticket/11399\">#11399</a>, <a href=\"http://core.trac.wordpress.org/ticket/21309\">#21309</a>, <a href=\"http://core.trac.wordpress.org/ticket/21240\">#21240</a>)</li>\n<li><strong>Comments API:</strong> Search for comments of a particular status, or with a meta query (same as with WP_Query). (<a href=\"http://core.trac.wordpress.org/ticket/21101\">#21101</a>, <a href=\"http://core.trac.wordpress.org/ticket/21003\">#21003</a>)</li>\n<li><strong>oEmbed: </strong>We&#8217;ve added support for a few oEmbed providers, and we now handle SSL links. (<a href=\"http://core.trac.wordpress.org/ticket/15734\">#15734</a>, <a href=\"http://core.trac.wordpress.org/ticket/21635\">#21635</a>, <a href=\"http://core.trac.wordpress.org/ticket/16996\">#16996</a>, <a href=\"http://core.trac.wordpress.org/ticket/20102\">#20102</a>)</li>\n</ul>\n<p>We&#8217;re looking forward to your feedback. If you break it (find a bug), please report it, and if you’re a developer, try to help us fix it. We&#8217;ve already had more than 200 contributors to version 3.5 — come join us!</p>\n<h3>And as promised, a bonus:</h3>\n<p>We&#8217;re planning a December 5 release for WordPress 3.5. But, we have a special offering for you, today. The newest default theme for WordPress, <strong>Twenty</strong><strong> Twelve</strong>, is now <a href=\"http://wordpress.org/extend/themes/twentytwelve\">available for download</a> from the WordPress themes directory. It&#8217;s a gorgeous and fully responsive theme, and it works with WordPress 3.4.2. Take it for a spin!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 3.4.2 Maintenance and Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2012/09/wordpress-3-4-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2012/09/wordpress-3-4-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Sep 2012 20:07:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2426\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"WordPress 3.4.2, now available for download, is a maintenance and security release for all previous versions. After nearly 15 million downloads since 3.4 was released not three months ago, we&#8217;ve identified and fixed a number of nagging bugs, including: Fix some issues with older browsers in the administration area. Fix an issue where a theme [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1443:\"<p>WordPress 3.4.2, now available for download, is a maintenance and security release for all previous versions.</p>\n<p>After nearly 15 million downloads since 3.4 was released not three months ago, we&#8217;ve <a href=\"http://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=3.4.2&amp;group=resolution&amp;order=severity&amp;desc=1\">identified and fixed a number of nagging bugs</a>, including:</p>\n<ul>\n<li>Fix some issues with older browsers in the administration area.</li>\n<li>Fix an issue where a theme may not preview correctly, or its screenshot may not be displayed.</li>\n<li>Improve plugin compatibility with the visual editor.</li>\n<li>Address pagination problems with some category permalink structures.</li>\n<li>Avoid errors with both oEmbed providers and trackbacks.</li>\n<li>Prevent improperly sized header images from being uploaded.</li>\n</ul>\n<p>Version 3.4.2 also fixes a few security issues and contains some security hardening. The vulnerabilities included potential privilege escalation and a bug that affects multisite installs with untrusted users. These issues were discovered and fixed by the WordPress security team.</p>\n<p><a href=\"http://wordpress.org/download/\"><strong>Download 3.4.2</strong></a><strong> now or visit Dashboard → Updates in your site admin to update now.</strong></p>\n<p><em>Fixes for some bugs<br />\nBack to work on 3.5<br />\nIt&#8217;s time to update</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/09/wordpress-3-4-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Event Organizers Unite!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/news/2012/07/event-organizers-unite/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/news/2012/07/event-organizers-unite/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Jul 2012 08:18:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"classes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:12:\"contributors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:10:\"hackathons\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:7:\"meetups\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:9:\"WordCamps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2412\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:388:\"I&#8217;m happy to announce the formation of a new official contributor group within the WordPress project for the organizers of in-person events that promote WordPress. Though there are hundreds of people around the globe organizing WordCamps, WordPress meetups, hackathons, free classes and the like, since their &#8220;projects&#8221; were all happening locally there was never a [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3709:\"<p>I&#8217;m happy to announce the formation of a new official contributor group within the WordPress project for the organizers of in-person events that promote WordPress. Though there are hundreds of people around the globe organizing WordCamps, WordPress meetups, hackathons, free classes and the like, since their &#8220;projects&#8221; were all happening locally there was never a central hub of activity for these folks. Despite the many informal connections between community organizers, we weren&#8217;t taking advantage of the huge existing knowledge base as new organizers stepped up to the plate.</p>\n<p>With the creation of <a href=\"http://make.wordpress.org/events/\">this new contributor group</a>, we finally have a way to organize and recognize these kinds of contributions, a clear avenue for feedback and input when it comes to policies around official events, and the opportunity to create even more connections between community organizers through mentorship programs and group projects. I&#8217;m especially excited about the creation of this group because until now the role of community organizer, while one of the most important, has not gotten the same recognition as higher-profile contribution methods such as forum support or core code contribution. That is something I hope this group will change, and the local organizers can be recognized for the community leaders they are.*</p>\n<p>If you are the organizer of a local WordCamp, WordPress meetup, etc., head over to <a href=\"http://make.wordpress.org/events/\">http://make.wordpress.org/events/</a> and introduce yourself so we can include you in the fun!</p>\n<p>Speaking of meetups, an update on <a href=\"http://wordpress.org/news/2012/01/year-of-the-meetup/\">my last post about meetups</a> is long overdue. With around 500 meetup organizers (and/or potential organizers) responding to my last survey, it took much longer than anticipated to review all the responses. We&#8217;re working now with meetup.com to issue invitations to join a centralized WordPress Meetup account, so if you filled out the form earlier this year, you should be hearing from them soon. The first wave of existing meetup account transfers (for those who opted in) should happen in the next two weeks, with additional waves every 3 months thereafter (and new groups will be able to be created along the way).</p>\n<p>The <a href=\"http://wordpress.org/news/2012/05/calling-all-contributors-community-summit-2012/\">contributor summit</a> that is being planned for the end of October also generated hundreds of responses/nominations, so that review process is still happening, but we should be announcing some basic plans and issuing invitations soon.</p>\n<p>And finally, it would be impossible to talk about in-person WordPress events without mentioning the upcoming annual <a href=\"http://2012.sf.wordcamp.org\">WordCamp in San Francisco</a>. As the event that represents the worldwide project as a whole, it&#8217;s the perfect time to evaluate where we stand as a project and as a community, to help determine where we go next. If you&#8217;re a WordPress user, developer, or in any way a part of our vast and interconnected ecosystem, please take a moment to fill in the <a href=\"http://wpsurvey.polldaddy.com/s/wp-2012\">2nd annual WordPress survey</a>. It&#8217;s just a couple of questions, and your input would be greatly appreciated. The results of the survey will be announced at <a href=\"http://2012.sf.wordcamp.org\">WSCF</a>, and a report issued shortly thereafter.</p>\n<p>Thanks!</p>\n<p>*<em> I am also of the firm belief that academic and arts activities should earn varsity letters just like sports teams do &#8212; go mathletes! </em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/news/2012/07/event-organizers-unite/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 3.4.1 Maintenance and Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2012/06/wordpress-3-4-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2012/06/wordpress-3-4-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2012 19:57:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2383\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:379:\"WordPress 3.4.1 is now available for download. WordPress 3.4 has been a very smooth release, and copies are flying off the shelf &#8212; 3 million downloads in two weeks! This maintenance release addresses 18 bugs with version 3.4, including: Fixes an issue where a theme&#8217;s page templates were sometimes not detected. Addresses problems with some category permalink [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1585:\"<p>WordPress 3.4.1 is now available for download. WordPress 3.4 has been a very smooth release, and copies are flying off the shelf &#8212; 3 million downloads in two weeks! This maintenance release addresses <a href=\"http://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=3.4.1&amp;group=resolution&amp;order=severity&amp;desc=1\">18 bugs</a> with version 3.4, including:</p>\n<ul>\n<li>Fixes an issue where a theme&#8217;s page templates were sometimes not detected.</li>\n<li>Addresses problems with some category permalink structures.</li>\n<li>Better handling for plugins or themes loading JavaScript incorrectly.</li>\n<li>Adds early support for uploading images on iOS 6 devices.</li>\n<li>Allows for a technique commonly used by plugins to detect a network-wide activation.</li>\n<li>Better compatibility with servers running certain versions of PHP (5.2.4, 5.4) or with uncommon setups (safe mode, open_basedir), which had caused warnings or in some cases prevented emails from being sent.</li>\n</ul>\n<p>Version 3.4.1 also fixes a few security issues and contains some security hardening. The vulnerabilities included potential information disclosure as well as an bug that affects multisite installs with untrusted users. These issues were discovered and fixed by the WordPress security team.</p>\n<p><strong><a href=\"http://wordpress.org/download/\">Download 3.4.1</a> now or visit Dashboard → Updates in your site admin to update now.</strong></p>\n<p><em>Green was a bit green<br />\nWe have hardened it up some<br />\nUpdate WordPress now</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/06/wordpress-3-4-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:42:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 3.4 “Green”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://wordpress.org/news/2012/06/green/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://wordpress.org/news/2012/06/green/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Jun 2012 18:42:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2334\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:386:\"WordPress 3.4 is here and out the door. We&#8217;ve dubbed this release &#8220;Green&#8221; in honor of guitarist Grant Green whose soulful simplicity has kept many of us company during this release. This release includes significant improvements to theme customization, custom headers, Twitter embeds, and image captions &#8212; here&#8217;s a short clip with the highlights: For [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15280:\"<p>WordPress 3.4 is <a href=\"http://wordpress.org/download/\">here and out the door</a>. We&#8217;ve dubbed this release &#8220;Green&#8221; in honor of guitarist <a href=\"http://en.wikipedia.org/wiki/Grant_Green\">Grant Green</a> whose soulful simplicity has kept many of us company during this release.</p>\n<p>This release includes significant improvements to theme customization, custom headers, Twitter embeds, and image captions &#8212; here&#8217;s a short clip with the highlights:</p>\n<div id=\"v-Gg0EFixV-1\" class=\"video-player\"><embed id=\"v-Gg0EFixV-1-video\" src=\"http://s0.videopress.com/player.swf?v=1.03&amp;guid=Gg0EFixV&amp;isDynamicSeeking=true\" type=\"application/x-shockwave-flash\" width=\"692\" height=\"388\" title=\"Introducing WordPress 3.4 &quot;Green&quot;\" wmode=\"direct\" seamlesstabbing=\"true\" allowfullscreen=\"true\" allowscriptaccess=\"always\" overstretch=\"true\"></embed></div>\n<h3>For Users</h3>\n<p>The biggest change in 3.4 is the <strong>theme customizer</strong> which allows you to play around with various looks and settings for your current theme or one you&#8217;re thinking about switching to without publishing those changes to the whole world. For themes that support it, you can change colors, backgrounds, and of course custom image headers. We have more planned for the customizer down the road.</p>\n<p>Throughout the rest of the admin you&#8217;ll notice tweaks to make your everyday life easier. For example, if you have lots of themes we&#8217;ve made it quicker to browse them all at once without paging. We&#8217;ve made it possible to use images from your media library to populate custom headers, and for you to choose the height and width of your header images.</p>\n<p>We&#8217;ve expanded our embed support to include tweets: just put a Twitter permalink on its own line in the post editor and we&#8217;ll turn it into a beautiful embedded Tweet. And finally, image captions have been improved to allow HTML, like links, in them.</p>\n<h3>For Developers</h3>\n<p>There are hundreds of under-the-hood improvements in this release, notably in the XML-RPC, themes, and custom header APIs, and significant performance improvements in WP_Query and the translation system. <a href=\"http://codex.wordpress.org/Version_3.4\">The Codex has a pretty good summary of the developer features</a>, and you can always <a href=\"http://core.trac.wordpress.org/milestone/3.4\">dive into Trac directly</a>.</p>\n<p>We&#8217;ve also <a href=\"http://wpdevel.wordpress.com/2012/06/07/wordpress-3-4-field-guide-for-developers/\">put together a busy developer&#8217;s field guide to the new APIs in 3.4</a>.</p>\n<h3>It takes a village</h3>\n<p>Here are some of the fine folks who were involved in bringing 3.4 to the world:</p>\n<p><a href=\"http://profiles.wordpress.org/082net\">082net</a>, <a href=\"http://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"http://profiles.wordpress.org/kawauso\">Adam Harley</a>, <a href=\"http://profiles.wordpress.org/ajacommerce\">AJ Acevedo</a>, <a href=\"http://profiles.wordpress.org/akshayagarwal\">akshayagarwal</a>, <a href=\"http://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"http://profiles.wordpress.org/alexkingorg\">Alex King</a>, <a href=\"http://profiles.wordpress.org/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"http://profiles.wordpress.org/ampt\">ampt</a>, <a href=\"http://profiles.wordpress.org/sabreuse\">Amy Hendrix</a>, <a href=\"http://profiles.wordpress.org/andrea_r\">Andrea Rennick</a>, <a href=\"http://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/andrewryno\">Andrew Ryno</a>, <a href=\"http://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"http://profiles.wordpress.org/arieputranto\">Arie Putranto</a>, <a href=\"http://profiles.wordpress.org/filosofo\">Austin Matzko</a>, <a href=\"http://profiles.wordpress.org/barry\">Barry</a>, <a href=\"http://profiles.wordpress.org/benchapman\">BenChapman</a>, <a href=\"http://profiles.wordpress.org/husobj\">Ben Huson</a>, <a href=\"http://profiles.wordpress.org/benbalter\">Benjamin J. Balter</a>, <a href=\"http://profiles.wordpress.org/billerickson\">Bill Erickson</a>, <a href=\"http://profiles.wordpress.org/bananastalktome\">Billy (bananastalktome)</a>, <a href=\"http://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"http://profiles.wordpress.org/camiloclc\">camiloclc</a>, <a href=\"http://profiles.wordpress.org/casben79\">casben79</a>, <a href=\"http://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"http://profiles.wordpress.org/ceefour\">ceefour</a>, <a href=\"http://profiles.wordpress.org/cheald\">cheald</a>, <a href=\"http://profiles.wordpress.org/chellycat\">chellycat</a>, <a href=\"http://profiles.wordpress.org/chexee\">Chelsea Otakan</a>, <a href=\"http://profiles.wordpress.org/chipbennett\">Chip Bennett</a>, <a href=\"http://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"http://profiles.wordpress.org/coenjacobs\">Coen Jacobs</a>, <a href=\"http://profiles.wordpress.org/scribu\">Cristi Burc&#259;</a>, <a href=\"http://profiles.wordpress.org/cyapow\">Cyapow</a>, <a href=\"http://profiles.wordpress.org/djcp\">Dan Collis-Puro</a>, <a href=\"http://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"http://profiles.wordpress.org/convissor\">Daniel Convissor</a>, <a href=\"http://profiles.wordpress.org/redsweater\">Daniel Jalkut (Red Sweater)</a>, <a href=\"http://profiles.wordpress.org/daniloercoli\">daniloercoli</a>, <a href=\"http://profiles.wordpress.org/koopersmith\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/dgwyer\">David Gwyer</a>, <a href=\"http://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"http://profiles.wordpress.org/demetris\">demetris</a>, <a href=\"http://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/dllh\">dllh</a>, <a href=\"http://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"http://profiles.wordpress.org/dougwrites\">Doug Provencio</a>, <a href=\"http://profiles.wordpress.org/drewapicture\">Drew Jaynes (DrewAPicture)</a>, <a href=\"http://profiles.wordpress.org/ebababi\">ebababi</a>, <a href=\"http://profiles.wordpress.org/edward-mindreantre\">edward-mindreantre</a>, <a href=\"http://profiles.wordpress.org/emhr\">emhr</a>, <a href=\"http://profiles.wordpress.org/empireoflight\">Empireoflight</a>, <a href=\"http://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"http://profiles.wordpress.org/ericmann\">Eric Mann</a>, <a href=\"http://profiles.wordpress.org/ejdanderson\">Evan Anderson</a>, <a href=\"http://profiles.wordpress.org/evansolomon\">Evan Solomon</a>, <a href=\"http://profiles.wordpress.org/fredwu\">Fred Wu</a>, <a href=\"http://profiles.wordpress.org/ounziw\">Fumito Mizuno</a>, <a href=\"http://profiles.wordpress.org/garyc40\">Gary Cao</a>, <a href=\"http://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"http://profiles.wordpress.org/gautamgupta\">Gautam</a>, <a href=\"http://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"http://profiles.wordpress.org/mamaduka\">George Mamadashvili</a>, <a href=\"http://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"http://profiles.wordpress.org/webord\">Gustavo Bordoni</a>, <a href=\"http://profiles.wordpress.org/hearvox\">hearvox</a>, <a href=\"http://profiles.wordpress.org/helenyhou\">Helen Hou-Sandi</a>, <a href=\"http://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"http://profiles.wordpress.org/iandstewart\">Ian Stewart</a>, <a href=\"http://profiles.wordpress.org/insertvisionhere\">insertvisionhere</a>, <a href=\"http://profiles.wordpress.org/ipstenu\">Ipstenu</a>, <a href=\"http://profiles.wordpress.org/master-jake\">Jacob Chappell</a>, <a href=\"http://profiles.wordpress.org/jane\">Jane Wells</a>, <a href=\"http://profiles.wordpress.org/japh\">Japh</a>, <a href=\"http://profiles.wordpress.org/jaquers\">jaquers</a>, <a href=\"http://profiles.wordpress.org/jarretc\">JarretC</a>, <a href=\"http://profiles.wordpress.org/jeremyclarke\">jeremyclarke</a>, <a href=\"http://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"http://profiles.wordpress.org/jayjdk\">Jesper Johansen (Jayjdk)</a>, <a href=\"http://profiles.wordpress.org/jiehanzheng\">Jiehan Zheng</a>, <a href=\"http://profiles.wordpress.org/intoxstudio\">Joachim Jensen (Intox Studio)</a>, <a href=\"http://profiles.wordpress.org/jkudish\">Joachim Kudish (jkudish)</a>, <a href=\"http://profiles.wordpress.org/johnbillion\">John Blackbourn (johnbillion)</a>, <a href=\"http://profiles.wordpress.org/aldenta\">John Ford</a>, <a href=\"http://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"http://profiles.wordpress.org/duck_\">Jon Cave</a>, <a href=\"http://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"http://profiles.wordpress.org/koke\">Jorge Bernal</a>, <a href=\"http://profiles.wordpress.org/josephscott\">Joseph Scott</a>, <a href=\"http://profiles.wordpress.org/devesine\">Justin</a>, <a href=\"http://profiles.wordpress.org/justindgivens\">Justin Givens</a>, <a href=\"http://profiles.wordpress.org/trepmal\">Kailey Lampert (trepmal)</a>, <a href=\"http://profiles.wordpress.org/kenan3008\">Kenan Dervisevic</a>, <a href=\"http://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"http://profiles.wordpress.org/kobenland\">Konstantin Obenland</a>, <a href=\"http://profiles.wordpress.org/klagraff\">Kristopher Lagraff</a>, <a href=\"http://profiles.wordpress.org/kurtpayne\">Kurt Payne</a>, <a href=\"http://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"http://profiles.wordpress.org/lardjo\">Lardjo</a>, <a href=\"http://profiles.wordpress.org/leewillis77\">Lee Willis (leewillis77)</a>, <a href=\"http://profiles.wordpress.org/linuxologos\">linuxologos</a>, <a href=\"http://profiles.wordpress.org/latz\">Lutz Schroer</a>, <a href=\"http://profiles.wordpress.org/settle\">Mantas Malcius</a>, <a href=\"http://profiles.wordpress.org/netweblogic\">Marcus</a>, <a href=\"http://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"http://profiles.wordpress.org/markauk\">Mark Rowatt Anderson</a>, <a href=\"http://profiles.wordpress.org/matveb\">Matias Ventura</a>, <a href=\"http://profiles.wordpress.org/sivel\">Matt Martz</a>, <a href=\"http://profiles.wordpress.org/mattonomics\">mattonomics</a>, <a href=\"http://profiles.wordpress.org/iammattthomas\">Matt Thomas</a>, <a href=\"http://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"http://profiles.wordpress.org/mattyrob\">MattyRob</a>, <a href=\"http://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"http://profiles.wordpress.org/merty\">Mert Yazicioglu</a>, <a href=\"http://profiles.wordpress.org/mgolawala\">mgolawala</a>, <a href=\"http://profiles.wordpress.org/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"http://profiles.wordpress.org/tw2113\">Michael Beckwith</a>, <a href=\"http://profiles.wordpress.org/mfields\">Michael Fields</a>, <a href=\"http://profiles.wordpress.org/mikeschinkel\">Mike Schinkel</a>, <a href=\"http://profiles.wordpress.org/dh-shredder\">Mike Schroder</a>, <a href=\"http://profiles.wordpress.org/toppa\">Mike Toppa</a>, <a href=\"http://profiles.wordpress.org/dimadin\">Milan Dinic</a>, <a href=\"http://profiles.wordpress.org/mitchoyoshitaka\">mitcho (Michael Yoshitaka Erlewine)</a>, <a href=\"http://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"http://profiles.wordpress.org/mrtorrent\">mrtorrent</a>, <a href=\"http://profiles.wordpress.org/namely\">Name.ly</a>, <a href=\"http://profiles.wordpress.org/Nao\">Naoko McCracken</a>, <a href=\"http://profiles.wordpress.org/alex-ye\">Nashwan Doaqan</a>, <a href=\"http://profiles.wordpress.org/niallkennedy\">Niall Kennedy</a>, <a href=\"http://profiles.wordpress.org/nikolayyordanov\">Nikolay Yordanov</a>, <a href=\"http://profiles.wordpress.org/norocketsurgeon\">norocketsurgeon</a>, <a href=\"http://profiles.wordpress.org/npetetin\">npetetin</a>, <a href=\"http://profiles.wordpress.org/nunomorgadinho\">Nuno Morgadinho</a>, <a href=\"http://profiles.wordpress.org/ocollet\">Olivier Collet</a>, <a href=\"http://profiles.wordpress.org/pbiron\">Paul Biron</a>, <a href=\"http://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"http://profiles.wordpress.org/petemall\">Pete Mall</a>, <a href=\"http://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"http://profiles.wordpress.org/pishmishy\">pishmishy</a>, <a href=\"http://profiles.wordpress.org/nprasath002\">Prasath Nadarajah</a>, <a href=\"http://profiles.wordpress.org/prettyboymp\">prettyboymp</a>, <a href=\"http://profiles.wordpress.org/ptahdunbar\">Ptah Dunbar</a>, <a href=\"http://profiles.wordpress.org/pw201\">pw201</a>, <a href=\"http://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"http://profiles.wordpress.org/rarst\">Rarst</a>, <a href=\"http://profiles.wordpress.org/arena\">RENAUT</a>, <a href=\"http://profiles.wordpress.org/greuben\">Reuben Gunday</a>, <a href=\"http://profiles.wordpress.org/roscius\">Roscius</a>, <a href=\"http://profiles.wordpress.org/rosshanney\">Ross Hanney</a>, <a href=\"http://profiles.wordpress.org/russellwwest\">russellwwest</a>, <a href=\"http://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"http://profiles.wordpress.org/ryanduff\">Ryan Duff</a>, <a href=\"http://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"http://profiles.wordpress.org/zeo\">Safirul Alredha</a>, <a href=\"http://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"http://profiles.wordpress.org/otto42\">Samuel &#8220;Otto&#8221; Wood</a>, <a href=\"http://profiles.wordpress.org/tenpura\">Seisuke Kuraishi</a>, <a href=\"http://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"http://profiles.wordpress.org/sirzooro\">sirzooro</a>, <a href=\"http://profiles.wordpress.org/sksmatt\">sksmatt</a>, <a href=\"http://profiles.wordpress.org/sushkov\">Stas Su&#537;kov</a>, <a href=\"http://profiles.wordpress.org/stephdau\">Stephane Daury (stephdau)</a>, <a href=\"http://profiles.wordpress.org/tamlyn\">tamlyn</a>, <a href=\"http://profiles.wordpress.org/griffinjt\">Thomas Griffin</a>, <a href=\"http://profiles.wordpress.org/tott\">Thorsten Ott</a>, <a href=\"http://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"http://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"http://profiles.wordpress.org/skithund\">Toni Viemero</a>, <a href=\"http://profiles.wordpress.org/transom\">transom</a>, <a href=\"http://profiles.wordpress.org/sorich87\">Ulrich Sossou</a>, <a href=\"http://profiles.wordpress.org/utkarsh\">Utkarsh Kukreti</a>, <a href=\"http://profiles.wordpress.org/wojtekszkutnik\">Wojtek Szkutnik</a>, <a href=\"http://profiles.wordpress.org/wonderslug\">wonderslug</a>, <a href=\"http://profiles.wordpress.org/xibe\">Xavier Borderie</a>, <a href=\"http://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"http://profiles.wordpress.org/thezman84\">Zach &#8220;The Z Man&#8221; Abernathy</a>, <a href=\"http://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, <a href=\"http://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>, and <a href=\"http://profiles.wordpress.org/zx2c4\">zx2c4</a>.</p>\n<p>See you next time!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"http://wordpress.org/news/2012/06/green/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.4 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/news/2012/06/wordpress-3-4-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/news/2012/06/wordpress-3-4-release-candidate-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Jun 2012 00:30:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2326\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:325:\"The third release candidate for WordPress 3.4 is now available. Since RC2, we&#8217;ve fixed a few lingering issues with the new live preview feature, as well as with custom headers and backgrounds. There are no remaining issues, and we plan to release 3.4 in the coming days. But if you think you&#8217;ve found a bug, [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1376:\"<p>The third release candidate for WordPress 3.4 is now available. Since RC2, we&#8217;ve fixed a few lingering issues with the new live preview feature, as well as with custom headers and backgrounds.</p>\n<p>There are no remaining issues, and we plan to release 3.4 in the coming days. But if you think you&#8217;ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums, or file a bug report on <a href=\"http://core.trac.wordpress.org/\">WordPress Trac</a>.</p>\n<p>To test WordPress 3.4, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"http://wordpress.org/wordpress-3.4-RC3.zip\">download the release candidate here</a> (zip). Be sure to visit <strong><img style=\"vertical-align: text-top\" src=\"http://wordpress.org/wp-content/themes/twentyten/images/wordpress.png\" alt=\"\" /> → About</strong> for an updated list of features and under-the-hood changes. As a reminder: We’ve published some resources on the <a href=\"http://wpdevel.wordpress.com/2012/06/07/wordpress-3-4-field-guide-for-developers/\">development blog</a> to help plugin and theme developers prepare.</p>\n<p><em>The new live preview<br />\nNearing perfection, and yet?<br />\nNot yet. RC3</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/news/2012/06/wordpress-3-4-release-candidate-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:48:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.4 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/news/2012/06/wordpress-3-4-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/news/2012/06/wordpress-3-4-release-candidate-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Jun 2012 02:48:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2318\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:331:\"The second release candidate for WordPress 3.4 is now available. Since RC1, we&#8217;ve made a few dozen final changes. Our goal is to release WordPress 3.4 early next week, so plugin and theme authors, this is likely your last chance to test your plugins and themes to find any compatibility issues before the final release. [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1713:\"<p>The second release candidate for WordPress 3.4 is now available. Since RC1, we&#8217;ve made a <a href=\"http://core.trac.wordpress.org/log/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=21018&amp;stop_rev=20949&amp;limit=500\">few dozen final changes</a>.</p>\n<p>Our goal is to release WordPress 3.4 early next week, so plugin and theme authors, this is likely <strong>your last chance to test your plugins and themes to find any compatibility issues before the final release</strong>. We&#8217;ve published some resources on the <a href=\"http://wpdevel.wordpress.com/2012/06/07/wordpress-3-4-field-guide-for-developers/\">development blog</a> to help you prepare.</p>\n<p>If you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on WordPress Trac</a>. Known issues that crop up will be listed <a href=\"http://core.trac.wordpress.org/report/6\">here</a>, but we&#8217;re hoping for a quiet few days so we can get some great features into your hands next week!</p>\n<p>To test WordPress 3.4, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"http://wordpress.org/wordpress-3.4-RC2.zip\">download the release candidate here</a> (zip). Be sure to visit <strong><img src=\"http://wordpress.org/wp-content/themes/twentyten/images/wordpress.png\" alt=\"\" style=\"vertical-align:text-top\" /> &rarr; About</strong> for an updated list of features and under-the-hood changes.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/news/2012/06/wordpress-3-4-release-candidate-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:48:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 3.4 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/news/2012/05/wordpress-3-4-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.org/news/2012/05/wordpress-3-4-release-candidate/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 27 May 2012 17:18:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2303\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:130:\"The first release candidate (RC1) for WordPress 3.4 is now available. If you haven’t tested WordPress 3.4 yet, now is the time! \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1871:\"<p>The first release candidate (RC1) for WordPress 3.4 is now available.</p>\n<p>An RC comes after the beta period and before final release. We think we&#8217;re done, but with millions of users and thousands of plugins and themes, it&#8217;s possible we&#8217;ve missed something. So if you haven’t tested WordPress 3.4 yet, now is the time! Please though, not on your live site unless you’re adventurous.</p>\n<p>With more than <a href=\"http://core.trac.wordpress.org/milestone/3.4\">500 tickets closed</a>, there are quite a few changes. <strong>Plugin and theme authors,</strong> please test your plugins and themes now, so that if there is a compatibility issue, we can figure it out before the final release.</p>\n<p>If you are testing the release candidate and think you&#8217;ve found a bug, please post to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>. If any known issues crop up, you’ll be able to <a href=\"http://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>To test WordPress 3.4, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"http://wordpress.org/wordpress-3.4-RC1.zip\">download the release candidate here (zip)</a>.</p>\n<p>If you&#8217;d like to know which levers to pull in your testing, visit the About page (<strong><img src=\"http://wordpress.org/wp-content/themes/twentyten/images/wordpress.png\" alt=\"\" style=\"vertical-align:text-top\" /> &rarr; About</strong> in the toolbar) and check out the list of features! You&#8217;ll definitely want to try the live theme previews.</p>\n<p><strong>Bonus:</strong> Happy birthday WordPress &#8212; <a href=\"http://wordpress.org/news/2003/05/wordpress-now-available/\">nine years old</a> today.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.org/news/2012/05/wordpress-3-4-release-candidate/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:42:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Plugin Directory Refreshed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.org/news/2012/05/plugins-refreshed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/news/2012/05/plugins-refreshed/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 19 May 2012 18:56:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Meta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2291\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:333:\"Been hanging out with a few WordPress.org hackers &#8212; Scott, Nacin, and Otto &#8212; the last few days in a BBQ-fueled haze of hacking to make plugin directory better. There are over 19,000 plugins listed and they&#8217;re really the heart and soul of WordPress for many people, so they deserve a little tender loving care. [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3324:\"<p>Been hanging out with a few WordPress.org hackers &#8212; Scott, Nacin, and Otto &#8212; the last few days in a BBQ-fueled haze of hacking to make plugin directory better. There are over <a href=\"http://wordpress.org/extend/plugins/\">19,000 plugins listed</a> and they&#8217;re really the heart and soul of WordPress for many people, so they deserve a little tender loving care. Here&#8217;s a quick before and after snapshot you can zoom in on to see a visual overview of some of the changes:</p>\n<p><a href=\"http://wpdotorg.files.wordpress.com/2012/05/contact-form-7.png\"><img src=\"http://s2.wp.com/imgpress?resize=690,350&amp;url=http://wpdotorg.files.wordpress.com/2012/05/contact-form-7.png&amp;unsharpmask=80,0.5,3\" alt=\"\" /></a></p>\n<p>Our first focus was around improving the discussion and support around plugins.</p>\n<p>You&#8217;ll now notice that threads about a plugin are pulled directly into a &#8220;support&#8221; tab on the plugin page &#8212; each plugin has its own forum. We&#8217;ve made authors much more prominent and with bigger Gravatars and better placement, so you can get a sense of who made the plugin you&#8217;re using. And finally to show how active and well-supported a plugin is, you can see  &#8221;16 of 75 support threads in the last two weeks have been resolved.&#8221; Finally, if you&#8217;re logged in you get access to the new &#8220;favorites&#8221; feature that lets you mark the plugins you use the most so you can share them on your profile page and find them quickly later. We soft-launched favorites a few days ago and there have already been 2,000 saved!</p>\n<p>If you&#8217;re a plugin author, we&#8217;ve started with a short threshold (2 weeks) for the resolved stats so it&#8217;s easy to catch up and stay on top of it. (It&#8217;ll eventually go to two months.) You also now have the ability to set stickies on your plugin forum to put FAQs or important information at the top, and of course any person you put as a committer on the plugin will have moderation access. People on the forum tag will see your custom header and links to the other resources attached to your plugin.</p>\n<p>We&#8217;ve tightened up the styling a bit on the forums and plugin pages, though still some cleanups to do there. Some older improvements you might have missed, but are still useful for users and developers alike:</p>\n<ul>\n<li>&#8220;Plugin headers&#8221; or those cool graphics you see at the top of plugin pages have really taken off, there are over 1,600 active now.</li>\n<li>You can now subscribe to get an email whenever a commit is made to a plugin repository even if it isn&#8217;t yours. There is no better way to follow the development of your favorite plugins. There&#8217;s nothing like the smell of fresh changesets in the morning.</li>\n<li>Behind the scenes, we&#8217;ve dramatically ramped up proactive scanning of the entire repository to help authors fix security and other problems they might not even know about yet. The quality level of the repo has gone way, way up.</li>\n</ul>\n<p>All of this will continue to evolve as we get feedback and see usage, but we&#8217;re happy to have been able to make some key improvements in just a few days while hanging out in Memphis. (This is why WordCamps usually have BBQ &#8212; it imparts magical coding powers.)</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/news/2012/05/plugins-refreshed/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Calling All Contributors: Community Summit 2012\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://wordpress.org/news/2012/05/calling-all-contributors-community-summit-2012/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://wordpress.org/news/2012/05/calling-all-contributors-community-summit-2012/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 May 2012 22:36:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2278\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:334:\"Each year, the WordPress core development team meets in person for a week to work together and discuss the vision for WordPress in the coming year. As annual events go, it&#8217;s easily my favorite. Don&#8217;t get me wrong, I love attending WordCamps and local WordPress meetups (which are awesome and you should try to attend [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5345:\"<p>Each year, the WordPress core development team meets in person for a week to work together and discuss the vision for WordPress in the coming year. As annual events go, it&#8217;s easily my favorite. Don&#8217;t get me wrong, I love attending <a title=\"WordCamp Central\" href=\"http://wordcamp.org\">WordCamps</a> and local <a title=\"WordPress on Meetup.com\" href=\"http://wordpress.meetup.com/\">WordPress meetups</a> (which are awesome and you should try to attend if you are able), but at the core team meetup, the focus on working together and getting things done is unique, as is the experience of every person in the room being so highly qualified. This year, instead of just planning a core team meetup, I&#8217;m aiming a little higher and shooting for a full-on contributor/community summit.</p>\n<p>Core code isn&#8217;t the only way to contribute to the WordPress project. We have an active <a title=\"Theme Review Team blog\" href=\"http://make.wordpress.org/themes/\">theme review team</a>, <a href=\"http://wordpress.org/support/\">support forum</a> volunteers, people writing <a href=\"http://codex.wordpress.org/Main_Page\">documentation</a>, plugin managers, community event organizers, translators, and more. The teams have been siloed for too long, so we&#8217;ve recently begun the process of bringing them together by having teams elect representatives to facilitate more communication between the contributor groups. These reps will form the nucleus of the contributor summit now being planned for a long weekend at the end of October in Tybee Island, GA. This is completely different from a WordCamp. It will be a combination of co-working, unconference, and discussions among the project leaders, and participation will be by invitation.</p>\n<p>In addition to bringing together the active contributor team reps to work together, I think it&#8217;s important to include community members who don&#8217;t fall into that category (at least not yet!). Successful WordPress-based business, authors of popular plugins and themes, and people using WordPress in unexpected but intriguing ways should have a place at the table, too. That said, part of the magic of the core team meetup is the small size; it allows every voice not only to be heard, but to engage. Since this is my first attempt at bringing together so many groups and points of view, I want to try and keep it small enough to retain that personal atmosphere while at the same time ensuring that the best possible mix of people and businesses in the WordPress ecosystem is represented. This is where you come in!</p>\n<p>Taking a cue from events with limited availability like <a title=\"AdaCamp\" href=\"http://dc.adacamp.org/\">AdaCamp</a> (attendance) and the <a title=\"jQuery Conference\" href=\"http://events.jquery.org/2012/sf/\">jQuery conference</a> (speaker roster), I want you to <a title=\"Nomination survey\" href=\"http://wordpressdotorg.polldaddy.com/s/2012-community-summit-nominations\">nominate people and/or WordPress-based businesses to participate in the summit</a>. Yes, you can nominate yourself.* You can nominate up to 10 additional people &#8212; be prepared to provide URLs and the reason you think they should participate. You can also nominate up to 10 WordPress-based businesses without naming individual people, so if there&#8217;s a theme or hosting company (for example) that you think should be there, you don&#8217;t need to go looking for employee names. This nomination process will hopefully ensure that we don&#8217;t overlook someone who is making a difference in our community when it comes time to issue invitations.</p>\n<p>Nominations will be open for a week, after which <a href=\"http://wordpressdotorg.polldaddy.com/s/2012-community-summit-nominations\">the survey</a> will be closed and the process of analyzing the results** will begin. The nominations process will lead to invitations in June, confirmations in July, planning in August and September, and the summit itself in October. Hopefully we can stream and/or record some of the activity to share online at <a href=\"http://wordpress.tv\">WordPress.tv</a>. Additional invitations may be extended up until the event if there are people/businesses that become more active in the community. If you&#8217;re thinking to yourself that maybe now&#8217;s the perfect time to start <a href=\"http://codex.wordpress.org/Contributing_to_WordPress\">contributing time to the WordPress project</a>, good thinking! In the meantime, if you want to weigh in, <a href=\"http://wordpressdotorg.polldaddy.com/s/2012-community-summit-nominations\">fill in the community summit nomination form</a>. Thanks, and wish us luck!</p>\n<p><em>* Nominating yourself: Do nominate yourself if you fall into one of the categories described in the post above, or if you believe that you have a unique point of view. Please do not nominate yourself if you just think it would be cool to hang out with this group. This is a working event, and everyone is expected to bring something special to the table.</em></p>\n<p><em>** I (and/or a helpful community volunteer) will sift through the nominations and compile a shortlist of the most-nominated people/businesses and the most intriguing underdogs. This list will be reviewed by the summit planning committee (made up of team reps) to create the invitation list.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://wordpress.org/news/2012/05/calling-all-contributors-community-summit-2012/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:31:\"http://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 11 Oct 2012 23:38:08 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:10:\"x-pingback\";s:36:\"http://wordpress.org/news/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Thu, 27 Sep 2012 22:37:49 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 139\";}s:5:\"build\";s:14:\"20111015034325\";}","no");
INSERT INTO wp_options VALUES("2584","_transient_timeout_feed_mod_42c0b09d1a19fc19e012ce008912cc9c","1350041887","no");
INSERT INTO wp_options VALUES("2585","_transient_feed_mod_42c0b09d1a19fc19e012ce008912cc9c","1349998687","no");
INSERT INTO wp_options VALUES("2586","_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f","1350041887","no");
INSERT INTO wp_options VALUES("2587","_transient_dash_20494a3d90a6669585674ed0eb8dcd8f","<p>This dashboard widget queries <a href=\"http://blogsearch.google.com/\">Google Blog Search</a> so that when another blog links to your site it will show up here. It has found no incoming links&hellip; yet. It&#8217;s okay &#8212; there is no rush.</p>\n","no");
INSERT INTO wp_options VALUES("2592","_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51","1350041888","no");
INSERT INTO wp_options VALUES("2593","_transient_dash_4077549d03da2e451c8b5f002294ff51","<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/\' title=\'I’m excited to announce the availability of WordPress 3.5 Beta 1. This is software still in development and we really don’t recommend that you run it on a production site — set up a test site just to play with the new version. To test WordPress 3.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download [&hellip;]\'>WordPress 3.5 Beta 1 (and a bonus!)</a> <span class=\"rss-date\">September 27, 2012</span><div class=\'rssSummary\'>I’m excited to announce the availability of WordPress 3.5 Beta 1. This is software still in development and we really don’t recommend that you run it on a production site — set up a test site just to play with the new version. To test WordPress 3.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download [&hellip;]</div></li><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2012/09/wordpress-3-4-2/\' title=\'WordPress 3.4.2, now available for download, is a maintenance and security release for all previous versions. After nearly 15 million downloads since 3.4 was released not three months ago, we’ve identified and fixed a number of nagging bugs, including: Fix some issues with older browsers in the administration area. Fix an issue where a theme [&hellip;]\'>WordPress 3.4.2 Maintenance and Security Release</a> <span class=\"rss-date\">September 6, 2012</span><div class=\'rssSummary\'>WordPress 3.4.2, now available for download, is a maintenance and security release for all previous versions. After nearly 15 million downloads since 3.4 was released not three months ago, we’ve identified and fixed a number of nagging bugs, including: Fix some issues with older browsers in the administration area. Fix an issue where a theme [&hellip;]</div></li></ul></div>","no");
INSERT INTO wp_options VALUES("2606","_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc","1350041889","no");
INSERT INTO wp_options VALUES("2607","_transient_feed_mod_57bc725ad6568758915363af670fd8bc","1349998689","no");
INSERT INTO wp_options VALUES("2610","_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e","1350041889","no");
INSERT INTO wp_options VALUES("2611","_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e","<h4>Most Popular</h4>\n<h5><a href=\'http://wordpress.org/extend/plugins/wordpress-importer/\'>WordPress Importer</a></h5>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=wordpress-importer&amp;_wpnonce=035d3cf806&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'WordPress Importer\'>Install</a>)</span>\n<p>Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.</p>\n<h4>Newest Plugins</h4>\n<h5><a href=\'http://wordpress.org/extend/plugins/total-news-keywords/\'>Total News Keywords</a></h5>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=total-news-keywords&amp;_wpnonce=70952b67c0&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'Total News Keywords\'>Install</a>)</span>\n<p>This plugin automatically generates news_keywords meta data from post tags. You can set the maximum number of keywords to pull, override the news_keyw</p>\n","no");
INSERT INTO wp_options VALUES("2439","_transient_feed_mod_9e53082436aed3c2daf5425e656d2952","1349844176","no");
INSERT INTO wp_options VALUES("1911","_site_transient_timeout_browser_836d938b29ccdff89eb9e0c80ceb5701","1350352827","yes");
INSERT INTO wp_options VALUES("1912","_site_transient_browser_836d938b29ccdff89eb9e0c80ceb5701","a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"22.0.1229.92\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("2602","_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc","1350041889","no");
INSERT INTO wp_options VALUES("2603","_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc","1349998689","no");
INSERT INTO wp_options VALUES("742","widget_featured_category_widget","a:2:{i:2;a:28:{s:5:\"title\";s:19:\"What we\'re up to...\";s:9:\"postcount\";s:1:\"1\";s:6:\"offset\";s:0:\"\";s:6:\"random\";s:0:\"\";s:4:\"home\";s:0:\"\";s:11:\"category_id\";s:1:\"4\";s:9:\"wordcount\";s:2:\"19\";s:5:\"width\";s:0:\"\";s:5:\"words\";s:1:\"1\";s:8:\"readmore\";s:1:\"1\";s:6:\"rmtext\";s:11:\"[read more]\";s:7:\"adsense\";s:0:\"\";s:9:\"linespace\";s:0:\"\";s:4:\"line\";s:1:\"1\";s:10:\"line_color\";s:7:\"#dddddd\";s:5:\"style\";s:0:\"\";s:8:\"homepage\";s:1:\"1\";s:9:\"frontpage\";s:1:\"1\";s:4:\"page\";s:1:\"1\";s:8:\"category\";s:1:\"1\";s:6:\"single\";s:1:\"1\";s:4:\"date\";s:1:\"1\";s:3:\"tag\";s:1:\"1\";s:10:\"attachment\";s:1:\"1\";s:8:\"taxonomy\";s:1:\"1\";s:6:\"author\";s:1:\"1\";s:6:\"search\";s:1:\"1\";s:9:\"not_found\";s:1:\"1\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("2600","_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc","1350041889","no");
INSERT INTO wp_options VALUES("2601","_transient_feed_a5420c83891a9c88ad2a4f04584a5efc","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n	\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/extend/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Oct 2012 23:25:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"753@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WordPress SEO plugin to automatically optimize your Wordpress blog for Search Engines.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/extend/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"23862@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"Supercharge your WordPress site with powerful features previously only available to WordPress.com users.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Michael Adams (mdawaffe)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2141@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"WordPress SEO by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/extend/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"8321@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin by Yoast.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Google Analytics for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/extend/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2316@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:145:\"Track your WordPress site easily and with lots of metadata: views per author &#38; category, automatic tracking of outbound clicks and pageviews.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP Super Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2572@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/extend/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"132@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Arne\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.org/extend/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"15@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/extend/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"18101@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"gtrans\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/extend/plugins/gtrans/#post-30417\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Sep 2011 11:48:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"30417@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Make your website available to the world using Google Translate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"kikadev\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"1169@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"NextGEN Gallery is a fully integrated image gallery plugin for WordPress with dozens of options and features.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Yet Another Related Posts Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/#post-2769\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Jan 2008 13:05:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2769@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"Display a list of related entries on your site and feeds based on a unique algorithm. Now with custom post type support!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"mitcho (Michael Yoshitaka Erlewine)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WP-PageNavi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/extend/plugins/wp-pagenavi/#post-363\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 23:17:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"363@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Adds a more advanced paging navigation interface.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Lester Chan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Ultimate TinyMCE\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/extend/plugins/ultimate-tinymce/#post-32088\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Nov 2011 09:06:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"32088@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Description: Beef up your visual tinymce editor with a plethora of advanced options.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Josh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google Analyticator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/google-analyticator/#post-130\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"130@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Adds the necessary JavaScript code to enable Google Analytics. Includes widgets for Analytics data display.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"cavemonkey50\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:52:\"http://wordpress.org/extend/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 11 Oct 2012 23:38:09 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 30 Mar 2007 20:08:18 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 138\";}s:5:\"build\";s:14:\"20111015034325\";}","no");
INSERT INTO wp_options VALUES("2588","_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca","1350041888","no");
INSERT INTO wp_options VALUES("2377","pp_enable_fit_image","true","yes");
INSERT INTO wp_options VALUES("2572","pp_favicon","1349929057_favicon3.png","yes");
INSERT INTO wp_options VALUES("645","widget_custom_map","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("2604","_transient_timeout_feed_57bc725ad6568758915363af670fd8bc","1350041889","no");
INSERT INTO wp_options VALUES("2605","_transient_feed_57bc725ad6568758915363af670fd8bc","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n	\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress Plugins » View: Newest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://wordpress.org/extend/plugins/browse/new/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress Plugins » View: Newest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Oct 2012 23:35:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Haiku Deck for Wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/haiku-deck-oembed/#post-43416\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Sep 2012 01:42:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"43416@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Register Haiku Deck as an oEmbed content provider\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"marckula\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Quickpay Payment Gateway for WP e-Commerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://wordpress.org/extend/plugins/quickpay-payment-gateway-for-wp-e-commerce/#post-43878\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Oct 2012 13:36:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"43878@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Adds Quickpay.net payment gateway to WP e-Commerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Uffe Fey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"EasyRotator Social Add-On\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/extend/plugins/easyrotator-social-add-on/#post-44153\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Oct 2012 16:26:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"44153@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"Enhance EasyRotator for WordPress functionality with automatic social sharing buttons for each photo in your rotators.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"DWUser.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Read More Copy Link\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/extend/plugins/read-more-copy-link/#post-44220\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Oct 2012 17:54:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"44220@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"Ever wanted to attach a read more link to copied content? Now you can, introducing - Read More, Copy Link.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"ElbowRobo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Jigoshop Correios\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/jigoshop-correios/#post-44131\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Oct 2012 00:15:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"44131@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Adds Correios shipping to the Jigoshop plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Claudio Sanches\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Admin\'s Debug Tool\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/admins-debug-tool/#post-44164\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Oct 2012 20:33:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"44164@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"Admin-only tool for checking execution times and error output of current theme/plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"pantsonhead\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Total News Keywords\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/extend/plugins/total-news-keywords/#post-44217\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Oct 2012 16:46:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"44217@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"This plugin automatically generates news_keywords meta data from post tags. You can set the maximum number of keywords to pull, override the news_keyw\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"ClearCode Software\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Meetup.com oEmbeds - Easily embed events, groups, more!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/meetupcom-oembeds/#post-44149\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Oct 2012 14:50:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"44149@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Simply paste in a Meetup.com URL to a page or post, and it will display the event, group, ect.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"bradparbs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"SpeakerDeck oEmbeds - Easily embed Presentations!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/extend/plugins/speakerdeck-oembeds/#post-44151\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Oct 2012 15:48:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"44151@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"Simply paste in a SpeakerDeck.com URL to a page or post, and it will display the slideshow presentation.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"bradparbs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"CP Reservation Calendar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.org/extend/plugins/cp-reservation-calendar/#post-44215\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Oct 2012 15:01:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"44215@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"CP Reservation Calendar is a Wordpress plugin which allows your website visitors to select dates - ex:  check-in and check-out dates - for a reservati\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"codepeople\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Tweak Option\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/extend/plugins/tweak-option/#post-44182\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Oct 2012 14:34:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"44182@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"This plugin is a developers tool to inspect, modify and remove entries from the wp options database table.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"opajaap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"This Is My Jam Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/extend/plugins/thisismyjam-widget/#post-44148\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Oct 2012 14:27:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"44148@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Creates a widget provided by ThisIsMyJam.com with available options.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"norcross\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Gravity Forms Mass Import\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/extend/plugins/gravity-forms-mass-import/#post-44227\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Oct 2012 08:51:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"44227@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"Allows for mass import of gravity forms entries from a CSV file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"dunar21\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"YOURLS Link Creator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/extend/plugins/yourls-link-creator/#post-44163\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Oct 2012 20:23:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"44163@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Creates a YOURLS generated shortlink when saving posts. Requires your own YOURLS install.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"norcross\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Combine CSS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/extend/plugins/combine-css/#post-44133\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Oct 2012 02:54:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"44133@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WordPress plugin that combines, minifies, and compresses CSS files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"timmcdaniels\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:48:\"http://wordpress.org/extend/plugins/rss/view/new\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 11 Oct 2012 23:38:09 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 21 Sep 2012 01:42:03 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 138\";}s:5:\"build\";s:14:\"20111015034325\";}","no");
INSERT INTO wp_options VALUES("736","widget_featured_post_widget","a:2:{i:2;a:19:{s:5:\"title\";s:18:\"What were up to...\";s:7:\"article\";s:3:\"640\";s:6:\"backup\";s:0:\"\";s:5:\"class\";s:0:\"\";s:9:\"headclass\";s:0:\"\";s:9:\"dateclass\";s:0:\"\";s:5:\"thumb\";s:0:\"\";s:5:\"image\";s:0:\"\";s:5:\"width\";s:0:\"\";s:8:\"headline\";s:3:\"top\";s:4:\"date\";s:3:\"top\";s:7:\"excerpt\";s:0:\"\";s:9:\"linespace\";s:0:\"\";s:9:\"alignment\";s:4:\"none\";s:8:\"noshorts\";s:0:\"\";s:8:\"readmore\";s:1:\"1\";s:6:\"rmtext\";s:9:\"read more\";s:7:\"adsense\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("141","can_compress_scripts","1","yes");
INSERT INTO wp_options VALUES("918","_site_transient_timeout_wporg_theme_feature_list","1348745865","yes");
INSERT INTO wp_options VALUES("919","_site_transient_wporg_theme_feature_list","a:5:{s:6:\"Colors\";a:15:{i:0;s:5:\"black\";i:1;s:4:\"blue\";i:2;s:5:\"brown\";i:3;s:4:\"gray\";i:4;s:5:\"green\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:3:\"red\";i:9;s:6:\"silver\";i:10;s:3:\"tan\";i:11;s:5:\"white\";i:12;s:6:\"yellow\";i:13;s:4:\"dark\";i:14;s:5:\"light\";}s:7:\"Columns\";a:6:{i:0;s:10:\"one-column\";i:1;s:11:\"two-columns\";i:2;s:13:\"three-columns\";i:3;s:12:\"four-columns\";i:4;s:12:\"left-sidebar\";i:5;s:13:\"right-sidebar\";}s:5:\"Width\";a:2:{i:0;s:11:\"fixed-width\";i:1;s:14:\"flexible-width\";}s:8:\"Features\";a:19:{i:0;s:8:\"blavatar\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:15:\"flexible-header\";i:10;s:20:\"front-page-post-form\";i:11;s:19:\"full-width-template\";i:12;s:12:\"microformats\";i:13;s:12:\"post-formats\";i:14;s:20:\"rtl-language-support\";i:15;s:11:\"sticky-post\";i:16;s:13:\"theme-options\";i:17;s:17:\"threaded-comments\";i:18;s:17:\"translation-ready\";}s:7:\"Subject\";a:3:{i:0;s:7:\"holiday\";i:1;s:13:\"photoblogging\";i:2;s:8:\"seasonal\";}}","yes");
INSERT INTO wp_options VALUES("234","recently_activated","a:4:{s:55:\"ultimate-coming-soon-page/ultimate-coming-soon-page.php\";i:1350088280;s:67:\"social-networks-auto-poster-facebook-twitter-g/NextScripts_SNAP.php\";i:1349850018;s:37:\"category-feature/category-feature.php\";i:1349845220;s:35:\"post-feature-widget/postfeature.php\";i:1349845220;}","yes");
INSERT INTO wp_options VALUES("146","shiba_mlib_options","a:1:{s:9:\"shortcode\";s:9:\"[gallery]\";}","yes");
INSERT INTO wp_options VALUES("147","theme_mods_twentyeleven","a:2:{s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:3;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1347335681;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}}}}","yes");
INSERT INTO wp_options VALUES("148","nav_menu_options","a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}","yes");
INSERT INTO wp_options VALUES("151","current_theme","Rhea","yes");
INSERT INTO wp_options VALUES("152","theme_mods_rhea","a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:3;}}","yes");
INSERT INTO wp_options VALUES("153","theme_switched","","yes");
INSERT INTO wp_options VALUES("154","pp_skin","dark","yes");
INSERT INTO wp_options VALUES("155","pp_menu","1","yes");
INSERT INTO wp_options VALUES("156","pp_right_click_text","Images are copyright by Living Image Photography.","yes");
INSERT INTO wp_options VALUES("157","pp_ga_id","","yes");
INSERT INTO wp_options VALUES("158","pp_font","Adamina","yes");
INSERT INTO wp_options VALUES("159","pp_h1_size","40","yes");
INSERT INTO wp_options VALUES("160","pp_h2_size","32","yes");
INSERT INTO wp_options VALUES("161","pp_h3_size","26","yes");
INSERT INTO wp_options VALUES("162","pp_h4_size","24","yes");
INSERT INTO wp_options VALUES("163","pp_h5_size","22","yes");
INSERT INTO wp_options VALUES("164","pp_h6_size","16","yes");
INSERT INTO wp_options VALUES("165","pp_menu_font_size","15","yes");
INSERT INTO wp_options VALUES("166","pp_sub_menu_font_size","12","yes");
INSERT INTO wp_options VALUES("167","pp_homepage_style","static","yes");
INSERT INTO wp_options VALUES("168","pp_homepage_slideshow_cat","0","yes");
INSERT INTO wp_options VALUES("169","pp_homepage_slideshow_timer","5","yes");
INSERT INTO wp_options VALUES("170","pp_homepage_slideshow_trans","1","yes");
INSERT INTO wp_options VALUES("171","pp_homepage_youtube_video_id","iIyfibIBpnM","yes");
INSERT INTO wp_options VALUES("172","pp_portfolio_slideshow_timer","5","yes");
INSERT INTO wp_options VALUES("173","pp_portfolio_slideshow_trans","1","yes");
INSERT INTO wp_options VALUES("174","pp_sidebar0","","yes");
INSERT INTO wp_options VALUES("175","pp_contact_email","marketing@livingimagephotography.com","yes");
INSERT INTO wp_options VALUES("176","pp_facebook_username","","yes");
INSERT INTO wp_options VALUES("177","pp_twitter_username","","yes");
INSERT INTO wp_options VALUES("178","pp_flickr_username","","yes");
INSERT INTO wp_options VALUES("179","pp_youtube_username","","yes");
INSERT INTO wp_options VALUES("180","pp_vimeo_username","","yes");
INSERT INTO wp_options VALUES("181","pp_tumblr_username","","yes");
INSERT INTO wp_options VALUES("182","pp_footer_text","Our Studio:\n\nSuite C1, Ground Floor,\n\n210 Willoughby Road,\n\nCrows Nest, NSW,\nAustralia 2065,\nPhone: 02 9967 3114 ","yes");
INSERT INTO wp_options VALUES("183","pp_font_family","Adamina","yes");
INSERT INTO wp_options VALUES("1421","_site_transient_timeout_browser_f76e1da45697f2bea834d3cc529b10fb","1350002855","yes");
INSERT INTO wp_options VALUES("1422","_site_transient_browser_f76e1da45697f2bea834d3cc529b10fb","a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:6:\"15.0.1\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"12\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("963","NS_SNAutoPosterLog","s:3469:\"a:14:{i:0;a:5:{s:4:\"date\";s:19:\"2012-09-27 23:55:03\";s:3:\"msg\";s:115:\"<span style=\"color:#008000; font-weight:bold;\">------=========#### NEW AUTO-POST REQUEST ####=========------</span>\";s:7:\"extInfo\";s:0:\"\";s:4:\"type\";s:1:\"M\";s:2:\"nt\";s:9:\"Start =- \";}i:1;a:5:{s:4:\"date\";s:19:\"2012-09-28 00:10:56\";s:3:\"msg\";s:115:\"<span style=\"color:#008000; font-weight:bold;\">------=========#### NEW AUTO-POST REQUEST ####=========------</span>\";s:7:\"extInfo\";s:0:\"\";s:4:\"type\";s:1:\"M\";s:2:\"nt\";s:9:\"Start =- \";}i:2;a:5:{s:4:\"date\";s:19:\"2012-10-05 00:53:02\";s:3:\"msg\";s:115:\"<span style=\"color:#008000; font-weight:bold;\">------=========#### NEW AUTO-POST REQUEST ####=========------</span>\";s:7:\"extInfo\";s:0:\"\";s:4:\"type\";s:1:\"M\";s:2:\"nt\";s:9:\"Start =- \";}i:3;a:5:{s:4:\"date\";s:19:\"2012-10-05 00:55:31\";s:3:\"msg\";s:115:\"<span style=\"color:#008000; font-weight:bold;\">------=========#### NEW AUTO-POST REQUEST ####=========------</span>\";s:7:\"extInfo\";s:0:\"\";s:4:\"type\";s:1:\"M\";s:2:\"nt\";s:9:\"Start =- \";}i:4;a:5:{s:4:\"date\";s:19:\"2012-10-05 02:43:51\";s:3:\"msg\";s:115:\"<span style=\"color:#008000; font-weight:bold;\">------=========#### NEW AUTO-POST REQUEST ####=========------</span>\";s:7:\"extInfo\";s:0:\"\";s:4:\"type\";s:1:\"M\";s:2:\"nt\";s:9:\"Start =- \";}i:5;a:5:{s:4:\"date\";s:19:\"2012-10-09 04:33:11\";s:3:\"msg\";s:115:\"<span style=\"color:#008000; font-weight:bold;\">------=========#### NEW AUTO-POST REQUEST ####=========------</span>\";s:7:\"extInfo\";s:0:\"\";s:4:\"type\";s:1:\"M\";s:2:\"nt\";s:9:\"Start =- \";}i:6;a:5:{s:4:\"date\";s:19:\"2012-10-09 04:49:28\";s:3:\"msg\";s:115:\"<span style=\"color:#008000; font-weight:bold;\">------=========#### NEW AUTO-POST REQUEST ####=========------</span>\";s:7:\"extInfo\";s:0:\"\";s:4:\"type\";s:1:\"M\";s:2:\"nt\";s:9:\"Start =- \";}i:7;a:5:{s:4:\"date\";s:19:\"2012-10-09 04:55:02\";s:3:\"msg\";s:115:\"<span style=\"color:#008000; font-weight:bold;\">------=========#### NEW AUTO-POST REQUEST ####=========------</span>\";s:7:\"extInfo\";s:0:\"\";s:4:\"type\";s:1:\"M\";s:2:\"nt\";s:9:\"Start =- \";}i:8;a:5:{s:4:\"date\";s:19:\"2012-10-09 05:00:22\";s:3:\"msg\";s:115:\"<span style=\"color:#008000; font-weight:bold;\">------=========#### NEW AUTO-POST REQUEST ####=========------</span>\";s:7:\"extInfo\";s:0:\"\";s:4:\"type\";s:1:\"M\";s:2:\"nt\";s:9:\"Start =- \";}i:9;a:5:{s:4:\"date\";s:19:\"2012-10-09 05:03:44\";s:3:\"msg\";s:115:\"<span style=\"color:#008000; font-weight:bold;\">------=========#### NEW AUTO-POST REQUEST ####=========------</span>\";s:7:\"extInfo\";s:0:\"\";s:4:\"type\";s:1:\"M\";s:2:\"nt\";s:9:\"Start =- \";}i:10;a:5:{s:4:\"date\";s:19:\"2012-10-09 05:06:40\";s:3:\"msg\";s:115:\"<span style=\"color:#008000; font-weight:bold;\">------=========#### NEW AUTO-POST REQUEST ####=========------</span>\";s:7:\"extInfo\";s:0:\"\";s:4:\"type\";s:1:\"M\";s:2:\"nt\";s:9:\"Start =- \";}i:11;a:5:{s:4:\"date\";s:19:\"2012-10-09 05:08:53\";s:3:\"msg\";s:115:\"<span style=\"color:#008000; font-weight:bold;\">------=========#### NEW AUTO-POST REQUEST ####=========------</span>\";s:7:\"extInfo\";s:0:\"\";s:4:\"type\";s:1:\"M\";s:2:\"nt\";s:9:\"Start =- \";}i:12;a:5:{s:4:\"date\";s:19:\"2012-10-09 05:20:34\";s:3:\"msg\";s:115:\"<span style=\"color:#008000; font-weight:bold;\">------=========#### NEW AUTO-POST REQUEST ####=========------</span>\";s:7:\"extInfo\";s:0:\"\";s:4:\"type\";s:1:\"M\";s:2:\"nt\";s:9:\"Start =- \";}i:13;a:5:{s:4:\"date\";s:19:\"2012-10-10 04:35:21\";s:3:\"msg\";s:115:\"<span style=\"color:#008000; font-weight:bold;\">------=========#### NEW AUTO-POST REQUEST ####=========------</span>\";s:7:\"extInfo\";s:0:\"\";s:4:\"type\";s:1:\"M\";s:2:\"nt\";s:9:\"Start =- \";}}\";","yes");
INSERT INTO wp_options VALUES("239","_site_transient_timeout_browser_4035d4b4450759cca24a82ef888cec49","1347940425","yes");
INSERT INTO wp_options VALUES("240","_site_transient_browser_4035d4b4450759cca24a82ef888cec49","a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"16.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"12\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("2536","_transient_timeout_settings_errors","1349854880","no");
INSERT INTO wp_options VALUES("286","widget_custom_flickr","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("243","theme_mods_twentyten","a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1347339160;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:19:\"primary-widget-area\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:21:\"secondary-widget-area\";a:0:{}s:24:\"first-footer-widget-area\";a:0:{}s:25:\"second-footer-widget-area\";N;s:24:\"third-footer-widget-area\";N;s:25:\"fourth-footer-widget-area\";N;}}}","yes");
INSERT INTO wp_options VALUES("250","pp_bg_overlay","true","yes");
INSERT INTO wp_options VALUES("248","_site_transient_update_themes","O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1350011717;s:7:\"checked\";a:3:{s:4:\"rhea\";s:3:\"1.3\";s:12:\"twentyeleven\";s:3:\"1.4\";s:9:\"twentyten\";s:3:\"1.4\";}s:8:\"response\";a:0:{}}","yes");
INSERT INTO wp_options VALUES("2672","sm_options","a:56:{s:18:\"sm_b_prio_provider\";s:41:\"GoogleSitemapGeneratorPrioByCountProvider\";s:13:\"sm_b_filename\";s:11:\"sitemap.xml\";s:10:\"sm_b_debug\";b:0;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_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:\"29ee3bbe1b95cedd10ea614d9f8bf6ac\";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:68:\"/home/livingim/public_html/livingimagephotography.com.au/sitemap.xml\";s:19:\"sm_b_fileurl_manual\";s:52:\"http://www.livingimagephotography.com.au/sitemap.xml\";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:1350087750;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");
INSERT INTO wp_options VALUES("2612","_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a","1350014982","yes");
INSERT INTO wp_options VALUES("2613","_site_transient_poptags_40cd750bba9870f18aada2478b24840a","a:40:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"3211\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"2116\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"1981\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"1623\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"1562\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"1387\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1109\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1090\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"1084\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1051\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1006\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:3:\"923\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:3:\"845\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:3:\"792\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:3:\"746\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:3:\"676\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:3:\"674\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:3:\"660\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"650\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:3:\"602\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"579\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"565\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"547\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"547\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:3:\"479\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"471\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"471\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"457\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"456\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"453\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"437\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"419\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"413\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"402\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"390\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"388\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"388\";}s:5:\"flash\";a:3:{s:4:\"name\";s:5:\"flash\";s:4:\"slug\";s:5:\"flash\";s:5:\"count\";s:3:\"367\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"361\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"360\";}}","yes");
INSERT INTO wp_options VALUES("540","rg_gforms_message","","yes");
INSERT INTO wp_options VALUES("541","rg_gform_last_update","1350085728","yes");
INSERT INTO wp_options VALUES("2577","_transient_timeout_seedprod_fonts","1350084680","no");
INSERT INTO wp_options VALUES("2578","_transient_seedprod_fonts","s:6436:\"a:184:{s:7:\"empty_0\";s:13:\"Select a Font\";s:10:\"optgroup_1\";s:12:\"System Fonts\";s:6:\"_arial\";s:5:\"Arial\";s:12:\"_arial_black\";s:11:\"Arial Black\";s:8:\"_georgia\";s:7:\"Georgia\";s:15:\"_helvetica_neue\";s:14:\"Helvetica Neue\";s:7:\"_impact\";s:6:\"Impact\";s:7:\"_lucida\";s:13:\"Lucida Grande\";s:9:\"_palatino\";s:8:\"Palatino\";s:7:\"_tahoma\";s:6:\"Tahoma\";s:6:\"_times\";s:15:\"Times New Roman\";s:10:\"_trebuchet\";s:9:\"Trebuchet\";s:8:\"_verdana\";s:7:\"Verdana\";s:13:\"optgroupend_1\";s:0:\"\";s:10:\"optgroup_2\";s:12:\"Google Fonts\";s:8:\"Aclonica\";s:8:\"Aclonica\";s:5:\"Allan\";s:5:\"Allan\";s:7:\"Allerta\";s:7:\"Allerta\";s:15:\"Allerta+Stencil\";s:15:\"Allerta Stencil\";s:8:\"Amaranth\";s:8:\"Amaranth\";s:24:\"Annie+Use+Your+Telescope\";s:24:\"Annie Use Your Telescope\";s:13:\"Anonymous+Pro\";s:13:\"Anonymous Pro\";s:5:\"Anton\";s:5:\"Anton\";s:19:\"Architects+Daughter\";s:19:\"Architects Daughter\";s:5:\"Arimo\";s:5:\"Arimo\";s:8:\"Artifika\";s:8:\"Artifika\";s:4:\"Arvo\";s:4:\"Arvo\";s:5:\"Asset\";s:5:\"Asset\";s:7:\"Astloch\";s:7:\"Astloch\";s:7:\"Bangers\";s:7:\"Bangers\";s:7:\"Bentham\";s:7:\"Bentham\";s:5:\"Bevan\";s:5:\"Bevan\";s:11:\"Bigshot+One\";s:11:\"Bigshot One\";s:13:\"Bowlby+One+SC\";s:13:\"Bowlby One SC\";s:7:\"Brawler\";s:7:\"Brawler\";s:4:\"Buda\";s:4:\"Buda\";s:5:\"Cabin\";s:5:\"Cabin\";s:12:\"Cabin+Sketch\";s:12:\"Cabin Sketch\";s:14:\"Calligraffitti\";s:14:\"Calligraffitti\";s:6:\"Candal\";s:6:\"Candal\";s:9:\"Cantarell\";s:9:\"Cantarell\";s:5:\"Cardo\";s:5:\"Cardo\";s:10:\"Carter+One\";s:10:\"Carter One\";s:6:\"Caudex\";s:6:\"Caudex\";s:18:\"Cedarville+Cursive\";s:18:\"Cedarville Cursive\";s:17:\"Cherry+Cream+Soda\";s:17:\"Cherry Cream Soda\";s:5:\"Chewy\";s:5:\"Chewy\";s:4:\"Coda\";s:4:\"Coda\";s:11:\"Coming+Soon\";s:11:\"Coming Soon\";s:5:\"Copse\";s:5:\"Copse\";s:6:\"Corben\";s:6:\"Corben\";s:7:\"Cousine\";s:7:\"Cousine\";s:21:\"Covered+By+Your+Grace\";s:21:\"Covered By Your Grace\";s:12:\"Crafty+Girls\";s:12:\"Crafty Girls\";s:12:\"Crimson+Text\";s:12:\"Crimson Text\";s:7:\"Crushed\";s:7:\"Crushed\";s:6:\"Cuprum\";s:6:\"Cuprum\";s:6:\"Damion\";s:6:\"Damion\";s:14:\"Dancing+Script\";s:14:\"Dancing Script\";s:20:\"Dawning+of+a+New+Day\";s:20:\"Dawning of a New Day\";s:13:\"Didact+Gothic\";s:13:\"Didact Gothic\";s:10:\"Droid+Sans\";s:10:\"Droid Sans\";s:15:\"Droid+Sans+Mono\";s:15:\"Droid Sans Mono\";s:11:\"Droid+Serif\";s:11:\"Droid Serif\";s:11:\"EB+Garamond\";s:11:\"EB Garamond\";s:13:\"Expletus+Sans\";s:13:\"Expletus Sans\";s:16:\"Fontdiner+Swanky\";s:16:\"Fontdiner Swanky\";s:5:\"Forum\";s:5:\"Forum\";s:12:\"Francois+One\";s:12:\"Francois One\";s:3:\"Geo\";s:3:\"Geo\";s:10:\"Goblin+One\";s:10:\"Goblin One\";s:16:\"Goudy+Bookletter\";s:16:\"Goudy Bookletter\";s:12:\"Gravitas+One\";s:12:\"Gravitas One\";s:6:\"Gruppo\";s:6:\"Gruppo\";s:15:\"Hammersmith+One\";s:15:\"Hammersmith One\";s:15:\"Holtwood+One+SC\";s:15:\"Holtwood One SC\";s:14:\"Homemade+Apple\";s:14:\"Homemade Apple\";s:7:\"IM+Fell\";s:7:\"IM Fell\";s:11:\"Inconsolata\";s:11:\"Inconsolata\";s:12:\"Indie+Flower\";s:12:\"Indie Flower\";s:12:\"Irish+Grover\";s:12:\"Irish Grover\";s:12:\"Josefin+Sans\";s:12:\"Josefin Sans\";s:12:\"Josefin+Slab\";s:12:\"Josefin Slab\";s:6:\"Judson\";s:6:\"Judson\";s:4:\"Jura\";s:4:\"Jura\";s:17:\"Just+Another+Hand\";s:17:\"Just Another Hand\";s:23:\"Just+Me+Again+Down+Here\";s:23:\"Just Me Again Down Here\";s:7:\"Kameron\";s:7:\"Kameron\";s:5:\"Kenia\";s:5:\"Kenia\";s:6:\"Kranky\";s:6:\"Kranky\";s:5:\"Kreon\";s:5:\"Kreon\";s:6:\"Kristi\";s:6:\"Kristi\";s:15:\"La+Belle+Aurore\";s:15:\"La Belle Aurore\";s:4:\"Lato\";s:4:\"Lato\";s:13:\"League+Script\";s:13:\"League Script\";s:6:\"Lekton\";s:6:\"Lekton\";s:9:\"Limelight\";s:9:\"Limelight\";s:7:\"Lobster\";s:7:\"Lobster\";s:11:\"Lobster+Two\";s:11:\"Lobster Two\";s:4:\"Lora\";s:4:\"Lora\";s:21:\"Love+Ya+Like+A+Sister\";s:21:\"Love Ya Like A Sister\";s:17:\"Loved+by+the+King\";s:17:\"Loved by the King\";s:12:\"Luckiest+Guy\";s:12:\"Luckiest Guy\";s:13:\"Maiden+Orange\";s:13:\"Maiden Orange\";s:4:\"Mako\";s:4:\"Mako\";s:9:\"Maven+Pro\";s:9:\"Maven Pro\";s:6:\"Meddon\";s:6:\"Meddon\";s:13:\"MedievalSharp\";s:13:\"MedievalSharp\";s:6:\"Megrim\";s:6:\"Megrim\";s:12:\"Merriweather\";s:12:\"Merriweather\";s:11:\"Metrophobic\";s:11:\"Metrophobic\";s:8:\"Michroma\";s:8:\"Michroma\";s:9:\"Miltonian\";s:9:\"Miltonian\";s:7:\"Molengo\";s:7:\"Molengo\";s:8:\"Monofett\";s:8:\"Monofett\";s:22:\"Mountains+of+Christmas\";s:22:\"Mountains of Christmas\";s:4:\"Muli\";s:4:\"Muli\";s:6:\"Neucha\";s:6:\"Neucha\";s:6:\"Neuton\";s:6:\"Neuton\";s:10:\"News+Cycle\";s:10:\"News Cycle\";s:6:\"Nobile\";s:6:\"Nobile\";s:4:\"Nova\";s:4:\"Nova\";s:6:\"Nunito\";s:6:\"Nunito\";s:23:\"OFL+Sorts+Mill+Goudy+TT\";s:23:\"OFL Sorts Mill Goudy TT\";s:15:\"Old+Standard+TT\";s:15:\"Old Standard TT\";s:9:\"Open+Sans\";s:9:\"Open Sans\";s:8:\"Orbitron\";s:8:\"Orbitron\";s:6:\"Oswald\";s:6:\"Oswald\";s:16:\"Over+the+Rainbow\";s:16:\"Over the Rainbow\";s:7:\"PT+Sans\";s:7:\"PT Sans\";s:8:\"PT+Serif\";s:8:\"PT Serif\";s:8:\"Pacifico\";s:8:\"Pacifico\";s:12:\"Patrick+Hand\";s:12:\"Patrick Hand\";s:11:\"Paytone+One\";s:11:\"Paytone One\";s:16:\"Permanent+Marker\";s:16:\"Permanent Marker\";s:11:\"Philosopher\";s:11:\"Philosopher\";s:4:\"Play\";s:4:\"Play\";s:16:\"Playfair+Display\";s:16:\"Playfair Display\";s:7:\"Podkova\";s:7:\"Podkova\";s:7:\"Puritan\";s:7:\"Puritan\";s:12:\"Quattrocento\";s:12:\"Quattrocento\";s:17:\"Quattrocento+Sans\";s:17:\"Quattrocento Sans\";s:6:\"Radley\";s:6:\"Radley\";s:7:\"Raleway\";s:7:\"Raleway\";s:9:\"Redressed\";s:9:\"Redressed\";s:13:\"Reenie+Beanie\";s:13:\"Reenie Beanie\";s:9:\"Rock+Salt\";s:9:\"Rock Salt\";s:7:\"Rokkitt\";s:7:\"Rokkitt\";s:14:\"Ruslan+Display\";s:14:\"Ruslan Display\";s:10:\"Schoolbell\";s:10:\"Schoolbell\";s:18:\"Shadows+Into+Light\";s:18:\"Shadows Into Light\";s:6:\"Shanti\";s:6:\"Shanti\";s:10:\"Sigmar+One\";s:10:\"Sigmar One\";s:8:\"Six+Caps\";s:8:\"Six Caps\";s:7:\"Slackey\";s:7:\"Slackey\";s:6:\"Smythe\";s:6:\"Smythe\";s:7:\"Sniglet\";s:7:\"Sniglet\";s:13:\"Special+Elite\";s:13:\"Special Elite\";s:15:\"Stardos+Stencil\";s:15:\"Stardos Stencil\";s:19:\"Sue+Ellen+Francisco\";s:19:\"Sue Ellen Francisco\";s:9:\"Sunshiney\";s:9:\"Sunshiney\";s:18:\"Swanky+and+Moo+Moo\";s:18:\"Swanky and Moo Moo\";s:9:\"Syncopate\";s:9:\"Syncopate\";s:9:\"Tangerine\";s:9:\"Tangerine\";s:10:\"Tenor+Sans\";s:10:\"Tenor Sans\";s:20:\"Terminal+Dosis+Light\";s:20:\"Terminal Dosis Light\";s:18:\"The+Girl+Next+Door\";s:18:\"The Girl Next Door\";s:5:\"Tinos\";s:5:\"Tinos\";s:6:\"Ubuntu\";s:6:\"Ubuntu\";s:5:\"Ultra\";s:5:\"Ultra\";s:14:\"UnifrakturCook\";s:14:\"UnifrakturCook\";s:18:\"UnifrakturMaguntia\";s:18:\"UnifrakturMaguntia\";s:7:\"Unkempt\";s:7:\"Unkempt\";s:2:\"VT\";s:2:\"VT\";s:6:\"Varela\";s:6:\"Varela\";s:5:\"Vibur\";s:5:\"Vibur\";s:8:\"Vollkorn\";s:8:\"Vollkorn\";s:23:\"Waiting+for+the+Sunrise\";s:23:\"Waiting for the Sunrise\";s:8:\"Wallpoet\";s:8:\"Wallpoet\";s:15:\"Walter+Turncoat\";s:15:\"Walter Turncoat\";s:8:\"Wire+One\";s:8:\"Wire One\";s:17:\"Yanone+Kaffeesatz\";s:17:\"Yanone Kaffeesatz\";s:6:\"Zeyada\";s:6:\"Zeyada\";s:13:\"optgroupend_2\";s:0:\"\";}\";","no");
INSERT INTO wp_options VALUES("2436","_transient_timeout_feed_9e53082436aed3c2daf5425e656d2952","1349887376","no");
INSERT INTO wp_options VALUES("2437","_transient_feed_9e53082436aed3c2daf5425e656d2952","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:50:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"SeedProd\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"http://www.seedprod.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Professional WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Sep 2012 01:54:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://wordpress.org/?v=3.4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:41:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"SeedProd’s 1st Birthday – The Journey So Far\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://www.seedprod.com/seedprods-1st-birthday-the-journey-so-far/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://www.seedprod.com/seedprods-1st-birthday-the-journey-so-far/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Sep 2012 01:18:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.seedprod.com/?p=255\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:540:\"<p>SeedProd turned 1-year-old this month and it would have actually gone uncelebrated but I was looking back through some old sales data and noticed the date. I have learned a lot this year running SeedProd, like how to build a solid plugin in the wild world of WordPress, how to provide quality support and how [...]</p><p>The post <a href=\"http://www.seedprod.com/seedprods-1st-birthday-the-journey-so-far/\">SeedProd&#8217;s 1st Birthday &#8211; The Journey So Far</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1651:\"<p>SeedProd turned 1-year-old this month and it would have actually gone uncelebrated but I was looking back through some old sales data and noticed the date.</p>\n<p>I have learned a lot this year running SeedProd, like how to build a solid plugin in the wild world of WordPress, how to provide quality support and how to actually turn a profit which were all my goals when I started this venture coming off my nth failure which I wrote about <a title=\"Startups – A brutally honest post and reality check\" href=\"http://www.seedprod.com/startups-a-brutally-honest-post-and-reality-check/\">Startups – A brutally honest post and reality check</a></p>\n<p>SeedProd was an experiment as much as it was a business venture. I wanted to start small and focus on one product and make it the best on the market. I think I have achieved that. In that past year there have been many competitors to pop up and SeedProd is still the leader.</p>\n<p>What&#8217;s next? SeedProd will continue to improve the <a title=\"Features\" href=\"http://www.seedprod.com/features/\">Coming Soon Pro</a> plugin and I have another plugin lined up for a late Fall release. Plus I plan to release some services I feel there is a need for in the WordPress market. I&#8217;m attending <a href=\"http://pressnomics.com/\" target=\"_blank\">Pressnomics</a> in November where I hope to meet a co-founder.</p>\n<p>So cheers and here&#8217;s to another excellent year!</p>\n<p>The post <a href=\"http://www.seedprod.com/seedprods-1st-birthday-the-journey-so-far/\">SeedProd&#8217;s 1st Birthday &#8211; The Journey So Far</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://www.seedprod.com/seedprods-1st-birthday-the-journey-so-far/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:41:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Coming Soon Pro Version 3.3.0 Release with Countdown Timer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://www.seedprod.com/coming-soon-pro-version-3-3-0-release-with-countdown-timer/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://www.seedprod.com/coming-soon-pro-version-3-3-0-release-with-countdown-timer/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Aug 2012 01:23:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Release Notes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.seedprod.com/?p=183\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:598:\"<p>Coming Soon Pro Version 3.3.0 has been released. Changes: Added a countdown time with automated launch feature. Added fix time to client view cookie 6 hours. Fix an internal bug #48 One of the most requested features has been added to Coming Soon Pro. A Countdown Timer. The countdown timer features included: Option to launch automatically when [...]</p><p>The post <a href=\"http://www.seedprod.com/coming-soon-pro-version-3-3-0-release-with-countdown-timer/\">Coming Soon Pro Version 3.3.0 Release with Countdown Timer</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1264:\"<p>Coming Soon Pro Version 3.3.0 has been released.</p>\n<p>Changes:</p>\n<ul>\n<li><span style=\"color: #333333;\">Added a countdown time with automated launch feature.</span></li>\n<li><span style=\"color: #333333;\">Added fix time to client view cookie 6 hours.</span></li>\n<li><span style=\"color: #333333;\">Fix an internal bug #48</span></li>\n</ul>\n<div>One of the most requested features has been added to Coming Soon Pro. A Countdown Timer. The countdown timer features included:</div>\n<div>\n<ul>\n<li><span style=\"color: #333333;\">Option to launch automatically when the counter ends.</span></li>\n<li><span style=\"color: #333333;\">Translation Option for countdowns not in English</span></li>\n<li><span style=\"color: #333333;\">Auto time zones. The countdown will use the timezone select for your WordPress blog under settings.</span></li>\n</ul>\n<div>You should receive an automatic upgrade notification within 12hrs. or download from <a href=\"http://app.seedprod.com/\" target=\"_blank\">http://app.seedprod.com</a></div>\n</div>\n<p>The post <a href=\"http://www.seedprod.com/coming-soon-pro-version-3-3-0-release-with-countdown-timer/\">Coming Soon Pro Version 3.3.0 Release with Countdown Timer</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://www.seedprod.com/coming-soon-pro-version-3-3-0-release-with-countdown-timer/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:41:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"How to Enable WordPress Embeds on Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://www.seedprod.com/how-to-enable-wordpress-embeds-on-custom-fields/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://www.seedprod.com/how-to-enable-wordpress-embeds-on-custom-fields/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Jul 2012 06:02:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.seedprod.com/?p=156\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:643:\"<p>Starting in Version 2.9 WordPress added a super cool feature that lets you embed videos, images and other media by simply adding the source url in the post. So for example you could at the url &#8220;https://www.youtube.com/watch?v=PaUFSW3bxF8&#8243; and the video would be automatically added to your post. WordPress currently support auto-embeds from these sources: YouTube (only public videos and playlists [...]</p><p>The post <a href=\"http://www.seedprod.com/how-to-enable-wordpress-embeds-on-custom-fields/\">How to Enable WordPress Embeds on Custom Fields</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3954:\"<p>Starting in Version 2.9 WordPress added a super cool feature that lets you embed videos, images and other media by simply adding the source url in the post. So for example you could at the url &#8220;https://www.youtube.com/watch?v=PaUFSW3bxF8&#8243; and the video would be automatically added to your post. WordPress currently support auto-embeds from these sources:</p>\n<ul>\n<li><a title=\"http://www.youtube.com/\" href=\"http://www.youtube.com/\">YouTube</a> (only public videos and playlists &#8211; &#8220;unlisted&#8221; and &#8220;private&#8221; videos will not embed)</li>\n<li><a title=\"http://vimeo.com/\" href=\"http://vimeo.com/\">Vimeo</a></li>\n<li><a title=\"http://www.dailymotion.com/\" href=\"http://www.dailymotion.com/\">DailyMotion</a></li>\n<li><a title=\"http://blip.tv/\" href=\"http://blip.tv/\">blip.tv</a></li>\n<li><a title=\"http://www.flickr.com/\" href=\"http://www.flickr.com/\">Flickr</a> (both videos and images)</li>\n<li><a title=\"http://www.viddler.com/\" href=\"http://www.viddler.com/\">Viddler</a></li>\n<li><a title=\"http://www.hulu.com/\" href=\"http://www.hulu.com/\">Hulu</a></li>\n<li><a title=\"http://qik.com/\" href=\"http://qik.com/\">Qik</a></li>\n<li><a title=\"http://revision3.com/\" href=\"http://revision3.com/\">Revision3</a></li>\n<li><a title=\"http://www.scribd.com/\" href=\"http://www.scribd.com/\">Scribd</a></li>\n<li><a title=\"http://photobucket.com/\" href=\"http://photobucket.com/\">Photobucket</a></li>\n<li><a title=\"http://www.polldaddy.com/\" href=\"http://www.polldaddy.com/\">PollDaddy</a></li>\n<li><a title=\"http://wordpress.tv/\" href=\"http://wordpress.tv/\">WordPress.tv</a> (only <a title=\"http://videopress.com/\" href=\"http://videopress.com/\">VideoPress</a>-type videos for the time being)</li>\n<li><a title=\"http://www.smugmug.com/\" href=\"http://www.smugmug.com/\">SmugMug</a> (WordPress 3.0+)</li>\n<li><a title=\"http://www.funnyordie.com/\" href=\"http://www.funnyordie.com/\">FunnyOrDie.com</a> (WordPress 3.0+)</li>\n<li><a title=\"http://twitter.com\" href=\"http://twitter.com/\">Twitter</a> (WordPress 3.4+)</li>\n</ul>\n<p><span id=\"more-156\"></span><br />\nYou can add more sources <a href=\"http://codex.wordpress.org/Embeds#How_Can_I_Add_Support_For_More_Websites.3F\" target=\"_blank\">programmatically</a> or with a plugin called <a href=\"http://wordpress.org/extend/plugins/embedly/\" target=\"_blank\">Embedly</a>.</p>\n<p>I wanted to this feature to my<a title=\"Coming Soon Pro Features\" href=\"http://www.seedprod.com/features/\"> Coming Soon plugin</a> but it was not obvious on how to do so. I started hunting down the function that enabled this functionality on the post by searching for all the filters that ran on the template tag &#8220;the_content&#8221;. I found that on line 1056 in the file /wp-includes/media.php the following code was called:</p>\n<pre class=\"prettyprint \"> \n// Attempts to embed all URLs in a post\nif ( get_option(\'embed_autourls\') )\n    add_filter( \'the_content\', array(&amp;$this, \'autoembed\'), 8 );</pre>\n<p>The method autoembed is part of a class called WP_Embed which is defined as &#8220;API for easily embedding rich media such as videos and images into content.&#8221;</p>\n<p>So this was the function I need to pass my custom field content into to get the auto embed urls. I discover this was class was in the $GLOBALS array. so now all I had to do was call the method. Here&#8217;s the code.</p>\n<pre class=\"prettyprint \"> \nif(isset($GLOBALS[\'wp_embed\']))\n    $content = $GLOBALS[\'wp_embed\']-&gt;autoembed($content);</pre>\n<p>This would run your content through the <a href=\"http://oembed.com/\" target=\"_blank\">oEmbed</a> process of getting the html for the media urls.</p>\n<p>If anyone knows of a better way to do this please let me know in the comments.</p>\n<p>The post <a href=\"http://www.seedprod.com/how-to-enable-wordpress-embeds-on-custom-fields/\">How to Enable WordPress Embeds on Custom Fields</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://www.seedprod.com/how-to-enable-wordpress-embeds-on-custom-fields/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:41:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Coming Soon Pro Version 3 Walkthrough\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://www.seedprod.com/coming-soon-pro-version-3-walkthrough/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://www.seedprod.com/coming-soon-pro-version-3-walkthrough/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 Jul 2012 02:24:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.seedprod.com/?p=136\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:203:\"<p></p><p>The post <a href=\"http://www.seedprod.com/coming-soon-pro-version-3-walkthrough/\">Coming Soon Pro Version 3 Walkthrough</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:401:\"<p><span style=\"text-align:center; display: block;\"><a href=\"http://www.seedprod.com/coming-soon-pro-version-3-walkthrough/\"><img src=\"http://img.youtube.com/vi/PaUFSW3bxF8/2.jpg\" alt=\"\" /></a></span></p>\n<p>The post <a href=\"http://www.seedprod.com/coming-soon-pro-version-3-walkthrough/\">Coming Soon Pro Version 3 Walkthrough</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://www.seedprod.com/coming-soon-pro-version-3-walkthrough/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:41:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Introducing Coming Soon Pro Version 3 plugin for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://www.seedprod.com/introducing-coming-soon-pro-version-3-plugin-for-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://www.seedprod.com/introducing-coming-soon-pro-version-3-plugin-for-wordpress/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Jul 2012 03:06:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.seedprod.com/?p=117\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:562:\"<p>I&#8217;m happy to announce that Version 3 of the Coming Soon Pro plugin for WordPress is live and available for download. If you are a customer you will need to login and manually download the update since this is a complete rebuild from version 2. After you install Version 3 future updates will be automatic. [...]</p><p>The post <a href=\"http://www.seedprod.com/introducing-coming-soon-pro-version-3-plugin-for-wordpress/\">Introducing Coming Soon Pro Version 3 plugin for WordPress</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2681:\"<p>I&#8217;m happy to announce that Version 3 of the Coming Soon Pro plugin for WordPress is live and available for download. If you are a customer you will need to <a href=\"http://app.seedprod.com\" target=\"_blank\">login</a> and manually download the update since this is a complete rebuild from version 2. After you install Version 3 future updates will be automatic.</p>\n<p>If you&#8217;re not a customer now&#8217;s the perfect time purchase the <a title=\"Pricing\" href=\"http://www.seedprod.com/pricing/\">Coming Soon Pro plugin</a>!</p>\n<p><strong>ChangeLog</strong></p>\n<ul>\n<li>Rebuilt underlying framework and UI to use all WordPress native components.</li>\n<li>Ability to customize the template in an upgrade safe way.</li>\n<li>Embed videos in the description by by entering the url Example: <a href=\"http://www.youtube.com/watch?v=A-PRCQFXXJs\" target=\"_blank\">http://www.youtube.com/watch?<wbr>v=A-PRCQFXXJs</wbr></a></li>\n<li>Added Get Response as an email list provider</li>\n<li>Added the ability to capture First and Last name.</li>\n<li>Made the after form submit process easier to understand.</li>\n<li>Added PinIt and Tumblr to the Share Buttons</li>\n<li>Added the ability to include a Facebook Like thumbnail image.</li>\n<li>Built a referral system in to keep track of Subscribers, who the referrer and how many of those convert.</li>\n<li>Added a progress bar with automatic completion calculation.</li>\n<li>Change the location of the footer credit to the fixed bottom right of the page.</li>\n<li>Added more icon sizes.</li>\n<li>Added more social follow icons: Twitter, Facebook, LinkedIn,Google Plus, YouTube, Flickr, Vimeo, Pinterest, Instagram, Foursquare, Tumblr, RSS, email</li>\n<li>Drag &amp; Drop Change order of social follow icons</li>\n<li>Made language strings easier to find</li>\n<li>Created the foundation for an upcoming themes</li>\n<li>Created the foundation for more background effects</li>\n<li>Created the foundation for more text effects</li>\n<li>More container options: color, positon, effects</li>\n<li>Control access by IP</li>\n<li>Enable template responsiveness</li>\n<li>Better import/export using json</li>\n<li>More insight into your subscribers. Tries to find their referral, avatar, name (if you did not ask for it) and where they are from automatically.</li>\n<li>Inline Preview</li>\n<li>Made maintenance mode easier to enable and added the ability to capture emails in maintenance mode.</li>\n</ul>\n<p>The post <a href=\"http://www.seedprod.com/introducing-coming-soon-pro-version-3-plugin-for-wordpress/\">Introducing Coming Soon Pro Version 3 plugin for WordPress</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://www.seedprod.com/introducing-coming-soon-pro-version-3-plugin-for-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:41:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"Top 4 lessons learned from selling a premium WordPress plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://www.seedprod.com/top-4-lessons-learned-from-selling-a-premium-wordpress-plugin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"http://www.seedprod.com/top-4-lessons-learned-from-selling-a-premium-wordpress-plugin/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jun 2012 17:12:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://seedprod.wpengine.com/?p=45\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:581:\"<p>I released my premium maintenance mode and coming soon plugin for WordPress late last year. Since that time I have have made several distinctions as to what is important when it comes to building and selling a premium WordPress plugins and what separates it from the thousands of other plugins out there. 1. Customer support [...]</p><p>The post <a href=\"http://www.seedprod.com/top-4-lessons-learned-from-selling-a-premium-wordpress-plugin/\">Top 4 lessons learned from selling a premium WordPress plugin</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6856:\"<div class=\"entry clearfix\">\n<p>I released my premium <a href=\"/features/\">maintenance mode</a> and <a href=\"/features/\">coming soon</a> plugin for WordPress late last year. Since that time I have have made several distinctions as to what is important when it comes to building and selling a premium WordPress plugins and what separates it from the thousands of other plugins out there.</p>\n<h3 id=\"1_customer_support_should_be_your_top_priority\"><strong>1. Customer support should be your top priority</strong></h3>\n<p>When you sell a WordPress plugin you are really in the business of selling support since the software is open source. Therefore you should do everything in your power to make sure you offer the best customer support possible.</p>\n<ul>\n<li>Answer emails as soon as you get them.</li>\n<li>Be super courteous and nice</li>\n<li>Try to go the extra mile</li>\n<li>Try to make sure all your customers have a great experience</li>\n</ul>\n<p>Providing great customer support also has some great side benefits. You get tons of testimonials and word of mouth referrals for your product.</p>\n<h3 id=\"2_use_real_helpdesk_software\"><strong>2. Use real helpdesk software</strong></h3>\n<p>I see so many premium theme and plugin shops using forums or pure email for support. Forums are awful support platforms and usually the notifications and response times are horrendous.</p>\n<p>I guess so many shops use them because WordPress provides supports this way. The only difference is WordPress.org is a community and you are a private business selling a product. You should be the one supporting the product directly.</p>\n<p>I once posted a message in a support forum and I was then told expect a reply in 24-48 hrs. Are you kidding me, 24hrs to 48hrs. And if I have a follow up reply I have to potentially wait this out again…</p>\n<p>From this experience alone I swore off forums as a tool to provide support to my customers. Plus forums offer no reports on response times, way to identify re-occurring questions, incidents per user, and all the other features I think that I should provide when providing smart customer support.</p>\n<p>There are many supports platforms out there and some starting at no cost. Using dedicated support software should be a no brainer.</p>\n<p>Here are a few:</p>\n<ul>\n<li>Uservoice <a href=\"http://uservoice.com\">http://uservoice.com</a></li>\n<li>Zendesk <a href=\"http://zendesk.com\">http://zendesk.com</a></li>\n<li>Tender <a href=\"http://tenderapp.com/\">http://tenderapp.com/</a></li>\n<li>Ticksy <a href=\"https://www.ticksy.com/\">https://www.ticksy.com/</a></li>\n<li>Charm <a href=\"http://charmhq.com/\">http://charmhq.com/</a></li>\n</ul>\n<h3 id=\"3_use_the_wordpress_settings_api_and_native_ui_css_classes\"><strong>3. Use the WordPress Settings API and native UI CSS classes</strong></h3>\n<p>When I built the initial version of my coming soon plugin I used the settings api to build it. In fact the free version of my plugin still uses it. The <a href=\"http://codex.wordpress.org/Settings_API\">Settings API</a> is WordPress’s native api that allows admin pages containing settings forms to be managed semi-automatically.</p>\n<p>I love the Settigns API because it super stable and reliable. I made the huge mistake of using <a href=\"http://wordpress.org/extend/plugins/option-tree/\">OptionTree</a> as framework in Version 2 of my plugin. Now option tree does work as advertised and has lots of feature for beginners to get an option page up quick, but I found it to be super unstable in the “real WordPress world”.</p>\n<p>Some of the issues with the OptionTree framework I’ve had after stepping away form the Settings API include:</p>\n<ul>\n<li>It uses ajax for saving settings. In the “real WordPress world”, a plugin from any other developer can break your plugin, especially javascript. So when you use js as your main way to post back your settings you open yourself up to a tons potential issues. I’ve never had this issue when using the Settings API.</li>\n<li>It uses jquery’s ui tab css, which tons of others developers use and more than likely are leaking their css onto your settings screen and screwing up your display.</li>\n<li>It uses a round about method for escapeing quotes and other characters using addslashes and stripslashes as opposed to using WordPress’s builtin <a href=\"http://codex.wordpress.org/Data_Validation\">data validation</a> functions.</li>\n</ul>\n<p>The issues above account for more than 50% of my helpdesk request. Needless to says I’m switching back to the WordPress Settings API for Version 3. I’ve also started a plugin starter framework project, ‘_wpseed’, that wraps the Settings API for easier field and validation creation you can <a href=\"https://github.com/seedprod/_wpseed\">check it out</a> on Github.</p>\n<h3 id=\"4_namespace_everything_and_i_mean_everything\"><strong>4. Namespace everything and I mean everything</strong></h3>\n<p>Every plugin or theme developer should know that prefixing is the golden rule when it comes to WordPress development, but what they should also know is that this includes more than just prefixing your variables, functions and classes.</p>\n<p>You should also be prefix your CSS classes and your 3rd party scripts.</p>\n<p>All your css classes should start with .my_plugin_prefix. For example:</p>\n<p><code><br />\n.seed-csp3 p{<br />\nfont-size:14px;<br />\n}<br />\n</code></p>\n<p>This way you are only targeting the elements you need to style. You should properly <a href=\"http://codex.wordpress.org/Function_Reference/wp_enqueue_script\">enqueue scripts</a> so they only display on the page you need, but that’s another post. And if you’re using jQuery UI, please use their css scope function when building your theme.</p>\n<p>Prefixing 3rd Party scripts is another gotcha. I use <a href=\"http://leafo.net/lessphp/\">lessphp</a> in my coming soon plugin to do color calculation which I found out that many others do as well.</p>\n<p>Using ‘class_exist’ was not enough to avoid conflicts. What if you have need a latter version of class but the old class version was already loaded. Or what if the other developer does not use class exist?</p>\n<p>To avoid conflict I rename the file with my prefix, so lessc.inc.php becomes seed-lessc.inc.php then I prefix the 3rd party class “lessc” with my prefix as well like “seed_lessc”. This ensures I’m loading the class and version I intended.</p>\n<p>Well that’s it. Hopefully this will help other developers avoid some of the mistakes I’ve had so far. Leave your feedback or experiences in the comments below.</p>\n</div>\n<p>The post <a href=\"http://www.seedprod.com/top-4-lessons-learned-from-selling-a-premium-wordpress-plugin/\">Top 4 lessons learned from selling a premium WordPress plugin</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"http://www.seedprod.com/top-4-lessons-learned-from-selling-a-premium-wordpress-plugin/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:41:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Coming Soon Pro Version 2.5.0 Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://www.seedprod.com/coming-soon-pro-2-5-0-released/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://www.seedprod.com/coming-soon-pro-2-5-0-released/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 May 2012 17:10:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://seedprod.wpengine.com/?p=44\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:573:\"<p>Coming Soon Pro Version 2.5.0 has been released. Changes Updated Gravity forms support to the latest version. Shadow Box Opacity fallback support Added Generator Tag Respect WordPress privacy settings Permalink notice for Client View to work. Made Language strings easier to find Added FeedBurner Language setting Added FitVideo JS Integrated Typekit Fixed bug in Client [...]</p><p>The post <a href=\"http://www.seedprod.com/coming-soon-pro-2-5-0-released/\">Coming Soon Pro Version 2.5.0 Released</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:873:\"<p>Coming Soon Pro Version 2.5.0 has been released.</p>\n<p>Changes</p>\n<ul>\n<li>Updated Gravity forms support to the latest version.</li>\n<li>Shadow Box Opacity fallback support</li>\n<li>Added Generator Tag</li>\n<li>Respect WordPress privacy settings</li>\n<li>Permalink notice for Client View to work.</li>\n<li>Made Language strings easier to find</li>\n<li>Added FeedBurner Language setting</li>\n<li>Added FitVideo JS</li>\n<li>Integrated Typekit</li>\n<li>Fixed bug in Client URL when site in sub folder</li>\n</ul>\n<p>You should receive an automatic upgrade notification within 12hrs. or download from <a href=\"http://app.seedprod.com\" target=\"_blank\">http://app.seedprod.com</a></p>\n<p>The post <a href=\"http://www.seedprod.com/coming-soon-pro-2-5-0-released/\">Coming Soon Pro Version 2.5.0 Released</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://www.seedprod.com/coming-soon-pro-2-5-0-released/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:41:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Campaign Monitor – Feature Spotlight\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://www.seedprod.com/campaign-monitor-integration-feature-spotlight/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://www.seedprod.com/campaign-monitor-integration-feature-spotlight/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 May 2012 17:09:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://seedprod.wpengine.com/?p=43\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:573:\"<p>Campaign Monitor is email marketing software for designers and their clients. You can send beautiful email campaigns, track the results and manage your subscribers. Coming Soon Pro is proud to be integrated with Campaign Monitor. It never been easier to create a coming soon under construction page for your WordPress website and use Campaign Monitor [...]</p><p>The post <a href=\"http://www.seedprod.com/campaign-monitor-integration-feature-spotlight/\">Campaign Monitor &#8211; Feature Spotlight</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:953:\"<p><a href=\"http://http://www.campaignmonitor.com/\" target=\"_blank\">Campaign Monitor</a> is email marketing software for designers and their clients. You can send beautiful email campaigns, track the results and manage your subscribers.</p>\n<p>Coming Soon Pro is proud to be <a href=\"/features/#feature12\">integrated with Campaign Monitor</a>.</p>\n<p>It never been easier to create a coming soon under construction page for your WordPress website and use Campaign Monitor to collect emails. To see how view this short video.</p>\n<p><span style=\"text-align:center; display: block;\"><a href=\"http://www.seedprod.com/campaign-monitor-integration-feature-spotlight/\"><img src=\"http://img.youtube.com/vi/-vyUCvaNwrc/2.jpg\" alt=\"\" /></a></span></p>\n<p>The post <a href=\"http://www.seedprod.com/campaign-monitor-integration-feature-spotlight/\">Campaign Monitor &#8211; Feature Spotlight</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://www.seedprod.com/campaign-monitor-integration-feature-spotlight/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:41:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"SeedProd sponsors WPCandy’s Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://www.seedprod.com/seedprod-sponsors-wpcandy-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://www.seedprod.com/seedprod-sponsors-wpcandy-podcast/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 May 2012 17:07:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://seedprod.wpengine.com/?p=41\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:437:\"<p>SeedProd is proud to be a sponsor of WPCandy&#8217;s podcasts for the second week in May. Sponsored Episodes: WP Late Night #8: “My wife doesn’t allow that The Weekly Theme Show #7: “There’s a wizard in your WordPress theme”</p><p>The post <a href=\"http://www.seedprod.com/seedprod-sponsors-wpcandy-podcast/\">SeedProd sponsors WPCandy&#8217;s Podcast</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:684:\"<p>SeedProd is proud to be a sponsor of WPCandy&#8217;s podcasts for the second week in May.</p>\n<p>Sponsored Episodes:</p>\n<ul>\n<li><a href=\"http://wpcandy.com/broadcasts/wp-late-night/008-my-wife-doesnt-allow-that\" target=\"_blank\">WP Late Night #8: “My wife doesn’t allow that</a></li>\n<li><a href=\"http://wpcandy.com/broadcasts/theme-show/007-wizard-in-your-wordpress-theme\" target=\"_blank\">The Weekly Theme Show #7: “There’s a wizard in your WordPress theme”</a></li>\n</ul>\n<p>The post <a href=\"http://www.seedprod.com/seedprod-sponsors-wpcandy-podcast/\">SeedProd sponsors WPCandy&#8217;s Podcast</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://www.seedprod.com/seedprod-sponsors-wpcandy-podcast/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:41:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Constant Contact – Feature Spotlight\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://www.seedprod.com/constant-contact-integration-feature-spotlight/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://www.seedprod.com/constant-contact-integration-feature-spotlight/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 May 2012 17:05:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://seedprod.wpengine.com/?p=39\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:663:\"<p>Constant Contact helps small businesses, associations, and nonprofits connect with their customers, clients, and members. Constant Contact&#8217;s leading email marketing, online survey, event marketing, social media, and deal tools—supported by its expert personal coaching and support—help all types of small businesses and organizations create professional-looking email newsletters and insightful online surveys and begin a dialogue [...]</p><p>The post <a href=\"http://www.seedprod.com/constant-contact-integration-feature-spotlight/\">Constant Contact &#8211; Feature Spotlight</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1226:\"<p><a href=\"http://www.constantcontact.com\">Constant Contact</a> helps small businesses, associations, and nonprofits connect with their customers, clients, and members. Constant Contact&#8217;s leading email marketing, online survey, event marketing, social media, and deal tools—supported by its expert personal coaching and support—help all types of small businesses and organizations create professional-looking email newsletters and insightful online surveys and begin a dialogue with their customers</p>\n<p>Coming Soon Pro is proud to be <a href=\"/features/#feature12\">integrated with Constant Contact</a>.</p>\n<p>It never been easier to create a coming soon under construction page for your WordPress website and use Constant Contact to collect emails. To see how view this short video.</p>\n<p><span style=\"text-align:center; display: block;\"><a href=\"http://www.seedprod.com/constant-contact-integration-feature-spotlight/\"><img src=\"http://img.youtube.com/vi/nSUDbWVFYsE/2.jpg\" alt=\"\" /></a></span></p>\n<p>The post <a href=\"http://www.seedprod.com/constant-contact-integration-feature-spotlight/\">Constant Contact &#8211; Feature Spotlight</a> appeared first on <a href=\"http://www.seedprod.com\">SeedProd</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://www.seedprod.com/constant-contact-integration-feature-spotlight/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:29:\"http://www.seedprod.com/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:14:{s:6:\"server\";s:16:\"cloudflare-nginx\";s:4:\"date\";s:29:\"Wed, 10 Oct 2012 04:42:56 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:15:\"x-cf-powered-by\";s:8:\"WP 1.3.5\";s:10:\"x-pingback\";s:34:\"http://www.seedprod.com/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Tue, 25 Sep 2012 01:54:54 GMT\";s:4:\"etag\";s:34:\"\"6752e952ab3b66ec50a070def120b039\"\";s:12:\"x-robots-tag\";s:14:\"noindex,follow\";s:11:\"x-cacheable\";s:17:\"CacheAlways: feed\";s:13:\"cache-control\";s:28:\"max-age=600, must-revalidate\";s:7:\"x-cache\";s:6:\"HIT: 6\";s:6:\"x-type\";s:4:\"feed\";s:10:\"set-cookie\";s:121:\"__cfduid=d0875c2d13fe52c0ab8dae0da905a3c581349844176; expires=Mon, 23-Dec-2019 23:50:00 GMT; path=/; domain=.seedprod.com\";}s:5:\"build\";s:14:\"20111015034325\";}","no");
INSERT INTO wp_options VALUES("300","seedprod_comingsoon_options","a:13:{s:16:\"comingsoon_image\";s:94:\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/logocomingsoon-300x181.png\";s:19:\"comingsoon_headline\";s:17:\"We\'re Going Live!\";s:22:\"comingsoon_description\";s:98:\"<strong>We\'re currently uploading our exciting new web site, it should be live very soon.</strong>\";s:22:\"comingsoon_mailinglist\";s:4:\"none\";s:29:\"comingsoon_feedburner_address\";s:0:\"\";s:21:\"comingsoon_customhtml\";s:0:\"\";s:26:\"comingsoon_custom_bg_color\";s:7:\"#000000\";s:26:\"comingsoon_custom_bg_image\";s:0:\"\";s:21:\"comingsoon_font_color\";s:5:\"white\";s:24:\"comingsoon_headline_font\";s:8:\"Amaranth\";s:20:\"comingsoon_body_font\";s:8:\"Amaranth\";s:21:\"comingsoon_custom_css\";s:0:\"\";s:24:\"comingsoon_footer_credit\";s:1:\"0\";}","yes");
INSERT INTO wp_options VALUES("308","ngg_options","a:69:{s:11:\"gallerypath\";s:19:\"wp-content/gallery/\";s:9:\"deleteImg\";b:1;s:9:\"swfUpload\";b:1;s:13:\"usePermalinks\";b:0;s:13:\"permalinkSlug\";s:9:\"nggallery\";s:14:\"graphicLibrary\";s:2:\"gd\";s:14:\"imageMagickDir\";s:15:\"/usr/local/bin/\";s:11:\"useMediaRSS\";b:0;s:10:\"usePicLens\";b:0;s:12:\"activateTags\";b:0;s:10:\"appendType\";s:4:\"tags\";s:9:\"maxImages\";i:7;s:10:\"thumbwidth\";i:100;s:11:\"thumbheight\";i:75;s:8:\"thumbfix\";b:1;s:12:\"thumbquality\";i:100;s:8:\"imgWidth\";i:800;s:9:\"imgHeight\";i:600;s:10:\"imgQuality\";i:85;s:9:\"imgBackup\";b:1;s:13:\"imgAutoResize\";b:0;s:9:\"galImages\";s:2:\"20\";s:17:\"galPagedGalleries\";i:0;s:10:\"galColumns\";i:0;s:12:\"galShowSlide\";b:1;s:12:\"galTextSlide\";s:19:\"[Show as slideshow]\";s:14:\"galTextGallery\";s:19:\"[Show picture list]\";s:12:\"galShowOrder\";s:7:\"gallery\";s:7:\"galSort\";s:9:\"sortorder\";s:10:\"galSortDir\";s:3:\"ASC\";s:10:\"galNoPages\";b:1;s:13:\"galImgBrowser\";b:0;s:12:\"galHiddenImg\";b:0;s:10:\"galAjaxNav\";b:0;s:11:\"thumbEffect\";s:7:\"shutter\";s:9:\"thumbCode\";s:33:\"class=\"shutterset_%GALLERY_NAME%\"\";s:5:\"wmPos\";s:8:\"botRight\";s:6:\"wmXpos\";i:5;s:6:\"wmYpos\";i:5;s:6:\"wmType\";s:4:\"text\";s:6:\"wmPath\";s:0:\"\";s:6:\"wmFont\";s:9:\"arial.ttf\";s:6:\"wmSize\";i:10;s:6:\"wmText\";s:24:\"Living Image Photography\";s:7:\"wmColor\";s:6:\"000000\";s:8:\"wmOpaque\";s:3:\"100\";s:8:\"enableIR\";b:0;s:7:\"slideFx\";s:4:\"fade\";s:5:\"irURL\";s:0:\"\";s:12:\"irXHTMLvalid\";b:0;s:7:\"irAudio\";s:0:\"\";s:7:\"irWidth\";i:320;s:8:\"irHeight\";i:240;s:9:\"irShuffle\";b:1;s:17:\"irLinkfromdisplay\";b:1;s:16:\"irShownavigation\";b:0;s:11:\"irShowicons\";b:0;s:11:\"irWatermark\";b:0;s:13:\"irOverstretch\";s:4:\"true\";s:12:\"irRotatetime\";i:10;s:12:\"irTransition\";s:6:\"random\";s:10:\"irKenburns\";b:0;s:11:\"irBackcolor\";s:6:\"000000\";s:12:\"irFrontcolor\";s:6:\"FFFFFF\";s:12:\"irLightcolor\";s:6:\"CC0000\";s:13:\"irScreencolor\";s:6:\"000000\";s:11:\"activateCSS\";b:1;s:7:\"CSSfile\";s:13:\"nggallery.css\";s:11:\"installDate\";i:1347428792;}","yes");
INSERT INTO wp_options VALUES("309","ngg_db_version","1.8.0","yes");
INSERT INTO wp_options VALUES("311","widget_slideshow","a:3:{i:3;a:4:{s:5:\"title\";s:16:\"Awesome Products\";s:9:\"galleryid\";i:3;s:6:\"height\";i:160;s:5:\"width\";i:229;}i:4;a:4:{s:5:\"title\";s:16:\"Amazing Products\";s:9:\"galleryid\";i:3;s:6:\"height\";i:361;s:5:\"width\";i:229;}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("2590","_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca","1350041888","no");
INSERT INTO wp_options VALUES("2591","_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca","1349998688","no");
INSERT INTO wp_options VALUES("2570","category_children","a:0:{}","yes");
INSERT INTO wp_options VALUES("532","_transient_plugins_delete_result_1","1","yes");
INSERT INTO wp_options VALUES("538","rg_form_version","1.3.12.2","yes");
INSERT INTO wp_options VALUES("539","_transient_update_plugins","O:8:\"stdClass\":1:{s:8:\"response\";a:0:{}}","yes");
INSERT INTO wp_options VALUES("545","rg_gforms_disable_css","0","yes");
INSERT INTO wp_options VALUES("546","rg_gforms_captcha_public_key","6Lcl37oSAAAAAOv8goHq630QOhT6MVLeq7UUgYBg","yes");
INSERT INTO wp_options VALUES("547","rg_gforms_captcha_private_key","6Lcl37oSAAAAAOnxRbqggCpUEyL9_QpoFCXZSvLl","yes");
INSERT INTO wp_options VALUES("551","widget_custom_recent_posts","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("552","widget_custom_popular_posts","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("692","widget_custom_contact_form","a:2:{i:2;a:1:{s:5:\"title\";s:11:\"Contact us!\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("563","mfbfw","a:37:{s:11:\"borderColor\";s:7:\"#BBBBBB\";s:15:\"showCloseButton\";s:2:\"on\";s:11:\"closeHorPos\";s:5:\"right\";s:11:\"closeVerPos\";s:3:\"top\";s:12:\"paddingColor\";s:7:\"#FFFFFF\";s:7:\"padding\";s:2:\"10\";s:11:\"overlayShow\";s:2:\"on\";s:12:\"overlayColor\";s:7:\"#666666\";s:14:\"overlayOpacity\";s:3:\"0.3\";s:9:\"titleShow\";s:2:\"on\";s:13:\"titlePosition\";s:6:\"inside\";s:10:\"titleColor\";s:7:\"#333333\";s:13:\"showNavArrows\";s:2:\"on\";s:11:\"zoomOpacity\";s:2:\"on\";s:11:\"zoomSpeedIn\";s:3:\"500\";s:12:\"zoomSpeedOut\";s:3:\"500\";s:15:\"zoomSpeedChange\";s:3:\"300\";s:12:\"transitionIn\";s:4:\"fade\";s:13:\"transitionOut\";s:4:\"fade\";s:8:\"easingIn\";s:11:\"easeOutBack\";s:9:\"easingOut\";s:10:\"easeInBack\";s:12:\"easingChange\";s:14:\"easeInOutQuart\";s:10:\"imageScale\";s:2:\"on\";s:14:\"centerOnScroll\";s:2:\"on\";s:18:\"hideOnOverlayClick\";s:2:\"on\";s:18:\"enableEscapeButton\";s:2:\"on\";s:11:\"galleryType\";s:3:\"all\";s:16:\"customExpression\";s:74:\"jQuery(thumbnails).addClass(\"fancybox\").attr(\"rel\",\"fancybox\").getTitle();\";s:14:\"autoDimensions\";s:2:\"on\";s:10:\"frameWidth\";s:3:\"560\";s:11:\"frameHeight\";s:3:\"340\";s:15:\"callbackOnStart\";s:31:\"function() { alert(\"Start!\"); }\";s:16:\"callbackOnCancel\";s:32:\"function() { alert(\"Cancel!\"); }\";s:18:\"callbackOnComplete\";s:34:\"function() { alert(\"Complete!\"); }\";s:17:\"callbackOnCleanup\";s:33:\"function() { alert(\"CleanUp!\"); }\";s:15:\"callbackOnClose\";s:31:\"function() { alert(\"Close!\"); }\";s:10:\"extraCalls\";s:0:\"\";}","yes");
INSERT INTO wp_options VALUES("564","mfbfw_active_version","3.0.2","yes");
INSERT INTO wp_options VALUES("2438","_transient_timeout_feed_mod_9e53082436aed3c2daf5425e656d2952","1349887376","no");
INSERT INTO wp_options VALUES("874","_site_transient_timeout_browser_c8abce9ca233d7b42203a3e5cb7510a1","1349313927","yes");
INSERT INTO wp_options VALUES("875","_site_transient_browser_c8abce9ca233d7b42203a3e5cb7510a1","a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"21.0.1180.89\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("688","featured-page-widget-options","a:0:{}","yes");
INSERT INTO wp_options VALUES("689","widget_featured_page_widget","a:2:{i:2;a:10:{s:5:\"title\";s:0:\"\";s:8:\"category\";s:2:\"-1\";s:8:\"template\";s:8:\"standard\";s:5:\"items\";s:1:\"1\";s:6:\"length\";s:2:\"55\";s:6:\"target\";s:1:\"0\";s:9:\"linkalign\";s:6:\"center\";s:10:\"useimageas\";s:4:\"none\";s:10:\"imagealign\";s:5:\"right\";s:14:\"thumbnail_size\";s:9:\"thumbnail\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("906","pp_portfolio_enable_fit_image","true","yes");
INSERT INTO wp_options VALUES("916","NS_SNAutoPoster","a:3:{s:11:\"nsOpenGraph\";i:1;s:5:\"isPro\";s:1:\"1\";s:4:\"isMA\";b:0;}","yes");
INSERT INTO wp_options VALUES("2641","_transient_feed_0a083d877f376147da007362e4280079","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:55:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n   \n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.nextgen-gallery.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"The Official Home of NextGEN Gallery • Now a Project of Photocrati Media\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Oct 2012 11:00:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:19:\"\n    \n    \n    \n   \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://0.gravatar.com/avatar/851be3d6364106f03dacdb95b3431e47.png?s=48\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.nextgen-gallery.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"NextGEN Gallery Dimiss Fix Video Walkthrough\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://feedproxy.google.com/~r/nextgen-gallery/~3/6YeMNa0mCXs/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://www.nextgen-gallery.com/nextgen-gallery-dimiss-fix-video-walkthrough/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Oct 2012 11:00:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Quick Fix\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://www.nextgen-gallery.com/?p=1574\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1477:\"A small percentage of NextGEN Galler users are experiencing a problem where an announcement is not dismissing. In the support forum, we wrote a tutorial on how to fix the dismiss error on your website. Some people get concerned over editing plugin files, and we don&#8217;t blame you. They are not something you want to [...]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=6YeMNa0mCXs:NVFAJP_6nrI:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=6YeMNa0mCXs:NVFAJP_6nrI:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=6YeMNa0mCXs:NVFAJP_6nrI:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=6YeMNa0mCXs:NVFAJP_6nrI:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=6YeMNa0mCXs:NVFAJP_6nrI:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=6YeMNa0mCXs:NVFAJP_6nrI:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=6YeMNa0mCXs:NVFAJP_6nrI:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=6YeMNa0mCXs:NVFAJP_6nrI:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/nextgen-gallery/~4/6YeMNa0mCXs\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://www.nextgen-gallery.com/nextgen-gallery-dimiss-fix-video-walkthrough/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://www.nextgen-gallery.com/nextgen-gallery-dimiss-fix-video-walkthrough/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Demos of All NextGEN Gallery Types\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://feedproxy.google.com/~r/nextgen-gallery/~3/zjYE_yMwb0k/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://www.nextgen-gallery.com/demos-of-all-nextgen-gallery-types/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Oct 2012 18:34:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Displaying Galleries\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://www.nextgen-gallery.com/?p=1449\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1572:\"DEFAULT GALLERY DISPLAY TYPES There are four default gallery types in NextGEN Gallery: Thumbnail Galleries, Slideshow Galleries, Imagebrowser Galleries, and Single Pics. NEXTGEN BASIC THUMBNAIL GALLERY. This is one of three the standard NextGEN Displays. Shortcode format: [ nggallery id=X ] without space before/after brackets.  - NEXTGEN BASIC SLIDESHOW GALLERY. The NextGEN basic slideshow comes with a wide [...]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=zjYE_yMwb0k:B2Y8V-C38DI:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=zjYE_yMwb0k:B2Y8V-C38DI:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=zjYE_yMwb0k:B2Y8V-C38DI:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=zjYE_yMwb0k:B2Y8V-C38DI:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=zjYE_yMwb0k:B2Y8V-C38DI:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=zjYE_yMwb0k:B2Y8V-C38DI:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=zjYE_yMwb0k:B2Y8V-C38DI:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=zjYE_yMwb0k:B2Y8V-C38DI:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/nextgen-gallery/~4/zjYE_yMwb0k\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://www.nextgen-gallery.com/demos-of-all-nextgen-gallery-types/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://www.nextgen-gallery.com/demos-of-all-nextgen-gallery-types/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"WordPress Gallery or NextGEN Gallery?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://feedproxy.google.com/~r/nextgen-gallery/~3/cTO3wumiL0E/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://www.nextgen-gallery.com/wordpress-gallery-nextgen-gallery/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Oct 2012 12:00:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Tips & Tricks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"http://www.nextgen-gallery.com/?p=643\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1486:\"WordPress has made it very simple for photographers to post photos directly in their articles. But, to post a photo gallery inside an article does not display how most photographers would want them too.  The default WordPress gallery is in a boring grid layout. That is why we recommend using NextGEN Gallery inside your posts. [...]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=cTO3wumiL0E:Zac8CjYwTVg:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=cTO3wumiL0E:Zac8CjYwTVg:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=cTO3wumiL0E:Zac8CjYwTVg:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=cTO3wumiL0E:Zac8CjYwTVg:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=cTO3wumiL0E:Zac8CjYwTVg:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=cTO3wumiL0E:Zac8CjYwTVg:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=cTO3wumiL0E:Zac8CjYwTVg:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=cTO3wumiL0E:Zac8CjYwTVg:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/nextgen-gallery/~4/cTO3wumiL0E\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Scott\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://www.nextgen-gallery.com/wordpress-gallery-nextgen-gallery/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://www.nextgen-gallery.com/wordpress-gallery-nextgen-gallery/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:42:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Use Image Metadata Within NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://feedproxy.google.com/~r/nextgen-gallery/~3/qad_0iKUeh0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://www.nextgen-gallery.com/image-metadata/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Sep 2012 11:00:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:13:\"Tips & Tricks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"Lightroom\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Metadata\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"http://www.nextgen-gallery.com/?p=999\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1499:\"Here is a tip for using image metadata effectively within NextGEN Gallery. NextGEN Gallery handily can display the metadata and keywords contained in your images and display them. You can display images with captions and keywords will be converted into tags for easy sorting and searching through images. To do this you&#8217;ll need to make [...]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=qad_0iKUeh0:pxREHHrDTbs:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=qad_0iKUeh0:pxREHHrDTbs:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=qad_0iKUeh0:pxREHHrDTbs:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=qad_0iKUeh0:pxREHHrDTbs:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=qad_0iKUeh0:pxREHHrDTbs:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=qad_0iKUeh0:pxREHHrDTbs:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=qad_0iKUeh0:pxREHHrDTbs:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=qad_0iKUeh0:pxREHHrDTbs:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/nextgen-gallery/~4/qad_0iKUeh0\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"NextGEN Gallery User\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://www.nextgen-gallery.com/image-metadata/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://www.nextgen-gallery.com/image-metadata/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:48:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Embed Everything But The Image\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://feedproxy.google.com/~r/nextgen-gallery/~3/QbesjAo1oDI/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://www.nextgen-gallery.com/everything-but-the-image/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Sep 2012 11:00:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:13:\"Tips & Tricks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Fancybox\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"PDF\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:5:\"Vimeo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:7:\"YouTube\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"http://www.nextgen-gallery.com/?p=970\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1468:\"Have you ever felt like loading a video instead of an image? Or launch a PDF or even a URL within or outside your website from NextGen? Here are the Solutions to convert the Image List Gallery into more than just a thumbnail gallery. Plugins Required: NextGen Gallery NextGen Custom Fields Easy FancyBox Step 0 [...]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=QbesjAo1oDI:K1yghB4D48E:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=QbesjAo1oDI:K1yghB4D48E:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=QbesjAo1oDI:K1yghB4D48E:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=QbesjAo1oDI:K1yghB4D48E:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=QbesjAo1oDI:K1yghB4D48E:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=QbesjAo1oDI:K1yghB4D48E:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=QbesjAo1oDI:K1yghB4D48E:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=QbesjAo1oDI:K1yghB4D48E:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/nextgen-gallery/~4/QbesjAo1oDI\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"NextGEN Gallery User\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://www.nextgen-gallery.com/everything-but-the-image/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://www.nextgen-gallery.com/everything-but-the-image/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:42:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Adding Functionality: Pinterest Button\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://feedproxy.google.com/~r/nextgen-gallery/~3/bOzoYx3x-6w/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://www.nextgen-gallery.com/adding-functionality-pinterest/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Sep 2012 12:00:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:19:\"Third Party Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"Pinterest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:6:\"Social\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"http://www.nextgen-gallery.com/?p=659\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1511:\"Travis Hhoglund created a new WordPress plugin that adds the Pinterest pin button to your NextGEN Gallery lightbox. To get started, make sure you have NextGEN Gallery installed on your WordPress site. Then download, install and activate the Pinterest Lightbox plugin. No options need to be set. Travis created the plugin to work automatically. Add this [...]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=bOzoYx3x-6w:ZBHlaJmhjGo:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=bOzoYx3x-6w:ZBHlaJmhjGo:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=bOzoYx3x-6w:ZBHlaJmhjGo:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=bOzoYx3x-6w:ZBHlaJmhjGo:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=bOzoYx3x-6w:ZBHlaJmhjGo:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=bOzoYx3x-6w:ZBHlaJmhjGo:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=bOzoYx3x-6w:ZBHlaJmhjGo:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=bOzoYx3x-6w:ZBHlaJmhjGo:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/nextgen-gallery/~4/bOzoYx3x-6w\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Scott\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://www.nextgen-gallery.com/adding-functionality-pinterest/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://www.nextgen-gallery.com/adding-functionality-pinterest/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Adding Functionality: FooBox\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://feedproxy.google.com/~r/nextgen-gallery/~3/RaVtthAGQJI/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://www.nextgen-gallery.com/adding-functionality-foobox/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Sep 2012 18:49:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:19:\"Third Party Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"FooBox\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Lightbox\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:6:\"Social\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://www.nextgen-gallery.com/?p=1146\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1569:\"FooBox is a brand new WordPress plugin, literally released today. In addition to the features below, it&#8217;s 100% compatible with NextGEN Gallery. JQuery Lightbox Lightweight Social Sharing Responsive WordPress gallery support Image caption support Custom CSS support Open Graph Meta Data SEO plugin integration Slideshow Keyboard navigation Arrow options Color schemes &#8220;Using the ultra-popular NextGen [...]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=RaVtthAGQJI:BKludvdBOvo:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=RaVtthAGQJI:BKludvdBOvo:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=RaVtthAGQJI:BKludvdBOvo:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=RaVtthAGQJI:BKludvdBOvo:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=RaVtthAGQJI:BKludvdBOvo:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=RaVtthAGQJI:BKludvdBOvo:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=RaVtthAGQJI:BKludvdBOvo:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=RaVtthAGQJI:BKludvdBOvo:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/nextgen-gallery/~4/RaVtthAGQJI\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Scott\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://www.nextgen-gallery.com/adding-functionality-foobox/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://www.nextgen-gallery.com/adding-functionality-foobox/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"NextGEN Gallery Infographic from Infogr.am\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://feedproxy.google.com/~r/nextgen-gallery/~3/4EyDekYs79U/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://www.nextgen-gallery.com/nextgen-gallery-infographic-infogr-am/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Sep 2012 11:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Statistics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"http://www.nextgen-gallery.com/?p=656\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1480:\"Below is a fun Infographic created using Infogr.am &#8211; a new visual designer of Infographics. Infogr.am makes it super easy to create Infographics on any subject. All you need are fun stats and a Twitter or Facebook account to sign up. You might have already seen these stats from the article, Over 5 Million Downloads [...]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=4EyDekYs79U:Uh4CZ1xlDXU:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=4EyDekYs79U:Uh4CZ1xlDXU:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=4EyDekYs79U:Uh4CZ1xlDXU:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=4EyDekYs79U:Uh4CZ1xlDXU:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=4EyDekYs79U:Uh4CZ1xlDXU:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=4EyDekYs79U:Uh4CZ1xlDXU:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=4EyDekYs79U:Uh4CZ1xlDXU:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=4EyDekYs79U:Uh4CZ1xlDXU:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/nextgen-gallery/~4/4EyDekYs79U\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Scott\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://www.nextgen-gallery.com/nextgen-gallery-infographic-infogr-am/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://www.nextgen-gallery.com/nextgen-gallery-infographic-infogr-am/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"The Complete List of NextGEN Gallery Extension Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://feedproxy.google.com/~r/nextgen-gallery/~3/gesrx8gkfGc/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://www.nextgen-gallery.com/nextgen-gallery-extension-plugins/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Sep 2012 11:00:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Third Party Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://www.nextgen-gallery.com/?p=1070\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1488:\"We&#8217;re lucky to have a very active community of both users and developers around NextGEN Gallery. Even here at Photocrati/NextGEN, we have a hard time keeping track of all the plugins that have been created or improved over the last couple years for NextGEN users. So we decided to compile a comprehensive list for ourselves. [...]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=gesrx8gkfGc:4IW56P-CRZo:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=gesrx8gkfGc:4IW56P-CRZo:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=gesrx8gkfGc:4IW56P-CRZo:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=gesrx8gkfGc:4IW56P-CRZo:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=gesrx8gkfGc:4IW56P-CRZo:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=gesrx8gkfGc:4IW56P-CRZo:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=gesrx8gkfGc:4IW56P-CRZo:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=gesrx8gkfGc:4IW56P-CRZo:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/nextgen-gallery/~4/gesrx8gkfGc\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"NextGEN Gallery Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://www.nextgen-gallery.com/nextgen-gallery-extension-plugins/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://www.nextgen-gallery.com/nextgen-gallery-extension-plugins/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Finding NextGEN Gallery Plugin Add-ons\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://feedproxy.google.com/~r/nextgen-gallery/~3/v29SDapaAG4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://www.nextgen-gallery.com/nextgen-gallery-plugin-add-ons/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Aug 2012 11:00:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:19:\"Third Party Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"http://www.nextgen-gallery.com/?p=930\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1504:\"Are you on the hunt for NextGEN Gallery plugin add-ons?  Then you&#8217;re in the right place. When it comes to WordPress plugins, there are two form.  Free and premium (or paid). Free NextGEN Gallery Plugin Add-ons To find free NextGEN Gallery Plugin Add-ons, first visit the WordPress plugin directory.  Once there, you can do a search for [...]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=v29SDapaAG4:plKrqvUWHdA:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=v29SDapaAG4:plKrqvUWHdA:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=v29SDapaAG4:plKrqvUWHdA:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=v29SDapaAG4:plKrqvUWHdA:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=v29SDapaAG4:plKrqvUWHdA:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=v29SDapaAG4:plKrqvUWHdA:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/nextgen-gallery?a=v29SDapaAG4:plKrqvUWHdA:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/nextgen-gallery?i=v29SDapaAG4:plKrqvUWHdA:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/nextgen-gallery/~4/v29SDapaAG4\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Scott\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://www.nextgen-gallery.com/nextgen-gallery-plugin-add-ons/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"14\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://www.nextgen-gallery.com/nextgen-gallery-plugin-add-ons/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";s:4:\"href\";s:43:\"http://feeds.feedburner.com/nextgen-gallery\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"rel\";s:3:\"hub\";s:4:\"href\";s:32:\"http://pubsubhubbub.appspot.com/\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:4:\"info\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"uri\";s:15:\"nextgen-gallery\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"etag\";s:27:\"U5bhMe0hdGU3FuEBo6j8r2u2XsM\";s:13:\"last-modified\";s:29:\"Fri, 12 Oct 2012 02:00:17 GMT\";s:4:\"date\";s:29:\"Fri, 12 Oct 2012 03:10:53 GMT\";s:7:\"expires\";s:29:\"Fri, 12 Oct 2012 03:10:53 GMT\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:6:\"server\";s:3:\"GSE\";}s:5:\"build\";s:14:\"20111015034325\";}","no");
INSERT INTO wp_options VALUES("2608","_transient_timeout_plugin_slugs","1350098144","no");
INSERT INTO wp_options VALUES("2609","_transient_plugin_slugs","a:7:{i:0;s:29:\"gravityforms/gravityforms.php\";i:1;s:41:\"jamie-social-icons/jamie-social_icons.php\";i:2;s:29:\"nextgen-gallery/nggallery.php\";i:3;s:67:\"social-networks-auto-poster-facebook-twitter-g/NextScripts_SNAP.php\";i:4;s:55:\"ultimate-coming-soon-page/ultimate-coming-soon-page.php\";i:5;s:33:\"w3-total-cache/w3-total-cache.php\";i:6;s:25:\"wp-smushit/wp-smushit.php\";}","no");
INSERT INTO wp_options VALUES("2528","jamie_social_options","a:14:{s:7:\"showing\";s:3:\"top\";s:5:\"align\";s:5:\"right\";s:8:\"icontext\";s:0:\"\";s:8:\"facebook\";s:1:\"1\";s:9:\"pinterest\";s:1:\"1\";s:4:\"lang\";s:3:\"eng\";s:8:\"insights\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:18:\"facebook_recommend\";s:0:\"\";s:7:\"twitter\";s:0:\"\";s:6:\"google\";s:0:\"\";s:9:\"icontext_\";s:0:\"\";s:4:\"post\";s:0:\"\";s:4:\"page\";s:0:\"\";}","yes");
INSERT INTO wp_options VALUES("2537","_transient_settings_errors","a:1:{i:0;a:4:{s:7:\"setting\";s:7:\"general\";s:4:\"code\";s:16:\"settings_updated\";s:7:\"message\";s:15:\"Settings saved.\";s:4:\"type\";s:7:\"updated\";}}","no");
INSERT INTO wp_options VALUES("907","pp_blog_display_full","true","yes");
INSERT INTO wp_options VALUES("860","pp_blog_bg","1348621180_LivingImageBg.jpg","yes");
INSERT INTO wp_options VALUES("862","_site_transient_timeout_browser_96114696862f0e55672eee1f6f58fa88","1349228833","yes");
INSERT INTO wp_options VALUES("863","_site_transient_browser_96114696862f0e55672eee1f6f58fa88","a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"12.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"12\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("868","pp_enable_right_click","true","yes");
INSERT INTO wp_options VALUES("2596","_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c","1350041888","no");
INSERT INTO wp_options VALUES("2597","_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c","1349998688","no");
INSERT INTO wp_options VALUES("2598","_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f0","1350041888","no");
INSERT INTO wp_options VALUES("2599","_transient_dash_aa95765b5cc111c56d5993d476b1c2f0","<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://alexking.org/blog/2012/10/11/twitter-tools-3-0\' title=\'When I first started posting to Twitter I soon realized that I wanted to keep a copy of that content. Twitter Tools was born shortly thereafter. Since that time Twitter has evolved, WordPress has evolved, and my vision of how best to integrate the two has evolved with them. Twitter Tools 3.0 is a complete rewrite which realizes that vision in a way I’m quite [&hellip;]\'>Alex King: Twitter Tools 3.0</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2012/10/11/joao-paulo-mehl-agoradelibera-experiencias-de-democracia-digital-2/\' title=\' [&hellip;]\'>WordPress.tv: João Paulo Mehl: ÀgoraDelibera – Experiências de Democracia Digital</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2012/10/11/felipe-coelho-kussik-wordpress-total/\' title=\' [&hellip;]\'>WordPress.tv: Felipe Coelho Kussik: WordPress Total</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2012/10/10/frank-alcantara-odeio-pinguim-uma-relacao-de-amor-e-odio-com-o-google/\' title=\' [&hellip;]\'>WordPress.tv: Frank Alcantara: Odeio Pinguim – Uma Relação de Amor e Ódio com o Google</a></li><li><a class=\'rsswidget\' href=\'http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/W3GiFJPnpzo/\' title=\'New plugins Follow and Subscribe is a siderbar widget that shows links to a variety of social networks. Mobile CSS allows you to define different CSS styles that get loaded for specific mobile devices. Tweet Tweet polls Twitter and archives your tweets and the tweets of those you follow so those insightful conversations you have at 1am are never lost. Update [&hellip;]\'>Weblog Tools Collection: WordPress Plugin Releases for 10/10</a></li></ul></div>","no");
INSERT INTO wp_options VALUES("1690","_site_transient_timeout_browser_3e06c15bfebd8ab381c6519dc4972048","1350095128","yes");
INSERT INTO wp_options VALUES("1691","_site_transient_browser_3e06c15bfebd8ab381c6519dc4972048","a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"22.0.1229.79\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("1524","pp_logo","1349403841_LivingimagephotographyLogo_w-bg2.png","yes");
INSERT INTO wp_options VALUES("2640","_transient_timeout_feed_0a083d877f376147da007362e4280079","1350054653","no");
INSERT INTO wp_options VALUES("2658","_transient_timeout_w3tc_rewrite_test_6733db3745f75a63","1350012278","no");
INSERT INTO wp_options VALUES("2659","_transient_w3tc_rewrite_test_6733db3745f75a63","1","no");
INSERT INTO wp_options VALUES("2660","_transient_timeout_w3tc_rewrite_test_71ce8af43cec96b7","1350012385","no");
INSERT INTO wp_options VALUES("2661","_transient_w3tc_rewrite_test_71ce8af43cec96b7","1","no");
INSERT INTO wp_options VALUES("1483","portfoliosets_children","a:0:{}","yes");
INSERT INTO wp_options VALUES("2617","w3tc_request_data","","no");
INSERT INTO wp_options VALUES("2642","_transient_timeout_feed_mod_0a083d877f376147da007362e4280079","1350054653","no");
INSERT INTO wp_options VALUES("2643","_transient_feed_mod_0a083d877f376147da007362e4280079","1350011453","no");
INSERT INTO wp_options VALUES("2644","_transient_timeout_ngg_related_plugins","1350097854","no");
INSERT INTO wp_options VALUES("2645","_transient_ngg_related_plugins","O:8:\"stdClass\":2:{s:4:\"info\";a:3:{s:4:\"page\";i:1;s:5:\"pages\";i:7;s:7:\"results\";s:3:\"145\";}s:7:\"plugins\";a:24:{i:0;O:8:\"stdClass\":14:{s:4:\"name\";s:25:\"NextGEN Gallery Optimizer\";s:4:\"slug\";s:25:\"nextgen-gallery-optimizer\";s:7:\"version\";s:3:\"1.1\";s:6:\"author\";s:59:\"<a href=\"http://www.markstechnologynews.com\">Mark Jeldi</a>\";s:14:\"author_profile\";s:40:\"http://profiles.wordpress.org/mark-jeldi\";s:12:\"contributors\";a:1:{s:10:\"Mark Jeldi\";s:40:\"http://profiles.wordpress.org/mark-jeldi\";}s:8:\"requires\";s:5:\"3.1.2\";s:6:\"tested\";s:5:\"3.4.2\";s:13:\"compatibility\";a:1:{s:5:\"3.4.2\";a:1:{s:3:\"1.1\";a:3:{i:0;i:17;i:1;i:6;i:2;i:1;}}}s:6:\"rating\";d:69;s:11:\"num_ratings\";i:20;s:8:\"homepage\";N;s:11:\"description\";s:7135:\"<h4>NextGEN Gallery Optimizer</h4>\n\n<p>Improves your site\'s page load speed by ensuring NextGEN Gallery\'s scripts and styles ONLY load on posts with the [nggallery id=x] shortcode.</p>\n\n<p>It also includes and <em>automatically</em>-integrates the fantastic <a href=\"http://fancybox.net\">Fancybox</a> lightbox script, so now you can have gorgeous galleries AND a speedy site! *Requires <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery\">NextGEN Gallery</a> 1.6.2 and up.</p>\n\n<p>Please note: The basic version currently only supports the popular <strong>[nggallery id=x]</strong> shortcode and thus, will not load the extra scripts required for slideshows to function. If you require slideshow support, please consider downloading the <a href=\"http://www.markstechnologynews.com/nextgen-gallery-optimizer-premium\">Premium version</a>...</p>\n\n<h4>NextGEN Gallery Optimizer *Premium*</h4>\n\n<p>Builds on the basic version and adds support for ALL TEN of NextGen\'s shortcodes including <strong>[nggallery id=x]</strong>, <strong>[slideshow id=x]</strong>, <strong>[album id=x]</strong>, <strong>[thumb id=x]</strong>, <strong>[singlepic id=x]</strong>, <strong>[imagebrowser id=x]</strong>, <strong>[nggtags gallery&#124;album=mytag]</strong>, <strong>[random max=x]</strong>, <strong>[recent max=x]</strong> and <strong>[tagcloud]</strong>.</p>\n\n<p>It also adds support for the <strong>[Show as slideshow]</strong> link (loading slideshow scripts only after a user clicks-through), precision targeting for <strong>shortcode SUB-pages</strong> (ensuring we only load the scripts we need on each view), support for <strong>JW Image Rotator</strong> for stylish slideshows, support for <strong>AJAX pagination on [imagebrowser id=x]</strong> and now, features an attractive effect that <strong>resizes Fancybox when the browser window is resized</strong>.</p>\n\n<p>This Premium version is available from the plugin settings page, <a href=\"http://www.markstechnologynews.com/nextgen-gallery-optimizer-premium\">or can be downloaded here</a>.</p>\n\n<p>If you have any questions, suggestions, ideas or feedback, please email me at <a href=\"mailto:mark@markstechnologynews.com\">mark@markstechnologynews.com</a></p>\n\n<h4>Key features:</h4>\n\n<ol>\n<li>Improves your WordPress page load speed!</li>\n<li>Prevents NextGEN\'s scripts and styles from loading on posts without galleries.</li>\n<li>Lets you easily install the Fancybox lightbox to display your images in style.</li>\n</ol>\n\n<h4>NEW in Version 1.1 (first major release):</h4>\n\n<ol>\n<li>Fancybox title now included in image height calculations (Basic and Premium)</li>\n<li>New options: WordPress\'s included jQuery <strong>or</strong> go Google-hosted (Basic and Premium)</li>\n<li>Support for the Thickbox effect (Basic and Premium)</li>\n<li>Support for the Shutter effect (Basic and Premium)</li>\n<li>Support for JW Image Rotator slideshow integration (Premium)</li>\n<li>Support for AJAX pagination on [imagebrowser id=x] (reqs. Shutter) (Premium)</li>\n<li>Fancybox gets extra fancy...auto-resizes when the browser is resized (Premium)</li>\n</ol>\n\n<p>This first major release for Optimizer sees a number of new additions and features...\nFancybox now includes space for a single-line title in its image height calculations, vastly improving vertical alignment of the lightbox. Also, Optimizer now lets you choose between using WordPress\'s included jQuery (for greater compatibility), or the Google-hosted version (for faster page loads). Support for the Thickbox and Shutter effects has also been added thanks to user requests.</p>\n\n<p>On top of this, the Premium version now includes AJAX pagination when using Shutter on the [imagebrowser id=x] shortcode, supports the JW Image Rotator for slideshows and features a super-fancy, auto-resize function that <em>resizes Fancybox when the browser window is resized!</em></p>\n\n<h4>NEW in Version 1.0.8:</h4>\n\n<ol>\n<li>Tested fully-compatible with WordPress 3.4 (Basic and Premium)</li>\n<li>Improved compatibility with other plugins and themes (Basic and Premium)</li>\n<li>Display fix for Fancybox when no title is available (Basic and Premium)</li>\n<li>Latest jQuery 1.7.2 (Basic and Premium)</li>\n</ol>\n\n<p>This version adds the jQuery.noConflict(); method for improved compatibility with plugins and themes using other javascript libraries/frameworks including script.aculo.us, Prototype and MooTools. It also includes a fix for Fancybox/NextGEN Gallery integration where a small white line would appear underneath the lightbox when no title was set.</p>\n\n<h4>NEW in Version 1.0.7:</h4>\n\n<ol>\n<li>Improved compatibility with other scripts and plugins. (Basic and Premium)</li>\n<li>Minor bug fix in admin message. (Basic and Premium)</li>\n</ol>\n\n<p>This version enhances compatibility with other plugins and includes a few minor improvements.</p>\n\n<h4>NEW in Version 1.0.6:</h4>\n\n<ol>\n<li>Fully-automated Fancybox installation! (Basic and Premium)</li>\n</ol>\n\n<p>This version features completely automated Fancybox integration with NextGEN Gallery, so now you can be up and running even faster.</p>\n\n<h4>NEW in Version 1.0.5:</h4>\n\n<ol>\n<li>Precision matching with WordPress\'s built-in shortcode finder.</li>\n<li>NextGEN Gallery Optimizer <em>Premium</em> (an optional upgrade for a small donation).</li>\n</ol>\n\n<p>This version uses WordPress\'s native get_shortcode_regex() function for EXACT shortcode matching, ensuring scripts and styles don\'t load unexpectedly unless the FULL shortcode is present. If WordPress doesn\'t detect a shortcode, neither do we!</p>\n\n<p>Also, this update introduces the new NextGEN Gallery Optimizer <em>Premium</em> version, which adds support for ALL TEN of NextGen\'s shortcodes, support for the [show as slideshow] link, the removal of NextGEN\'s version number comment and more.</p>\n\n<h4>NEW in Version 1.0.4:</h4>\n\n<ol>\n<li>Easier set up</li>\n</ol>\n\n<p>This version automatically redirects first time users to the options page on activation and sets a default stylesheet for easier set up.</p>\n\n<h4>NEW in Version 1.0.3:</h4>\n\n<ol>\n<li>Optimized code for better compatibility and page load speed </li>\n<li>Improved settings page</li>\n</ol>\n\n<p>This update results in faster page loads on gallery pages by avoiding duplicate scripts. It reduces the chance of conflicts with other plugins and makes setting up Fancybox even easier.</p>\n\n<h4>NEW in Version 1.0.2:</h4>\n\n<ol>\n<li>Support for WordPress Pages</li>\n<li>Fancybox overlap fix</li>\n<li>Fix for Fancybox not working in IE6 &#38; IE8</li>\n<li>Latest JQuery</li>\n</ol>\n\n<p>This update lets you display galleries on both Posts AND Pages in style, but only load code when they\'re present.</p>\n\n<p>It also fixes an issue where some page elements overlap Fancybox and prevent the close button from functioning (in particular the title text, header image and menu bar in Twenty Eleven).</p>\n\n<p>It fixes the \"Fancybox not working in IE6 &#38; IE8\" issue by automatically updating the Fancybox stylesheet to use the correct file paths, and we\'re now running Fancybox on  JQuery version 1.7.1, resulting in faster page loads where galleries are present.</p>\";s:17:\"short_description\";s:129:\"Improves your site&#039;s page load speed by preventing NextGEN&#039;s scripts &#38; css from loading on posts without galleries.\";}i:1;O:8:\"stdClass\":14:{s:4:\"name\";s:23:\"NextGEN Public Uploader\";s:4:\"slug\";s:23:\"nextgen-public-uploader\";s:7:\"version\";s:5:\"1.7.1\";s:6:\"author\";s:52:\"<a href=\"http://webdevstudios.com\">WebDevStudios</a>\";s:14:\"author_profile\";s:39:\"http://profiles.wordpress.org/wds-scott\";s:12:\"contributors\";a:4:{s:9:\"WDS-Scott\";s:39:\"http://profiles.wordpress.org/wds-scott\";s:11:\"williamsba1\";s:41:\"http://profiles.wordpress.org/williamsba1\";s:4:\"rzen\";s:34:\"http://profiles.wordpress.org/rzen\";s:13:\"webdevstudios\";s:43:\"http://profiles.wordpress.org/webdevstudios\";}s:8:\"requires\";s:3:\"3.0\";s:6:\"tested\";s:3:\"3.5\";s:13:\"compatibility\";a:1:{s:5:\"3.4.2\";a:3:{s:5:\"1.6.1\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}s:3:\"1.7\";a:3:{i:0;i:100;i:1;i:2;i:2;i:2;}s:5:\"1.7.1\";a:3:{i:0;i:100;i:1;i:2;i:2;i:2;}}}s:6:\"rating\";d:81;s:11:\"num_ratings\";i:37;s:8:\"homepage\";s:56:\"http://webdevstudios.com/plugin/nextgen-public-uploader/\";s:11:\"description\";s:587:\"<p>The NextGEN Public Uploader plugin for WordPress allows users to upload images from the frontend of your website to a specified gallery in NextGEN. Upon upload the submitted image is marked as \"excluded\" and an email notification will be sent letting you know an image is waiting to be reviewed.</p>\n\n<p>REMEMBER: Always backup your database!</p>\n\n<h4>NextGEN Public Uploader is an extension of NextGEN Gallery</h4>\n\n<p><a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\" title=\"NextGEN Gallery\">NextGEN Gallery</a></p>\n\n<p>Special thanks to Patrick McCoy for his help.</p>\";s:17:\"short_description\";s:110:\"NextGEN Public Uploader is an extension to NextGEN Gallery which allows frontend image uploads for your users.\";}i:2;O:8:\"stdClass\":14:{s:4:\"name\";s:24:\"JJ NextGen JQuery Slider\";s:4:\"slug\";s:24:\"jj-nextgen-jquery-slider\";s:7:\"version\";s:5:\"1.3.9\";s:6:\"author\";s:8:\"JJ Coder\";s:14:\"author_profile\";s:37:\"http://profiles.wordpress.org/jjcoder\";s:12:\"contributors\";a:1:{s:8:\"JJ Coder\";s:0:\"\";}s:8:\"requires\";s:3:\"2.8\";s:6:\"tested\";s:5:\"3.2.1\";s:13:\"compatibility\";a:1:{s:5:\"3.4.2\";a:1:{s:5:\"1.3.9\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}}s:6:\"rating\";d:77.2000000000000028421709430404007434844970703125;s:11:\"num_ratings\";i:56;s:8:\"homepage\";N;s:11:\"description\";s:6271:\"<p>The \'JJ NextGen JQuery Slider\' allows you to create a \'Nivo slider\' (<a href=\"http://nivo.dev7studios.com/\" rel=\"nofollow\">http://nivo.dev7studios.com/</a>) as a widget or as a shortcode.\nThis plugin uses the \'NextGen Gallery\' plugin for its images.</p>\n\n<p>Requirements:</p>\n\n<ul>\n<li>NextGen Gallery Plugin (<a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/nextgen-gallery/</a>)</li>\n</ul>\n\n<p>NextGen Gallery Integration:</p>\n\n<ul>\n<li>This plugin uses the original width and height of the image uploaded so make sure the images are the correct dimensions when uploaded.</li>\n<li>Alt &#38; Title Text Field: Provide a full url here and the image will link to this. Only works if alt field starts with either of these; /, http, or ftp.</li>\n<li>Description Field: Will be used as a caption.</li>\n</ul>\n\n<p>You can specify the following parameters:</p>\n\n<p>NOTE: sc means shortcode:</p>\n\n<ul>\n<li>Title: Title for slider. Leave blank for no title. (sc: title=\"My Slider\")</li>\n<li>Gallery: Leave blank to use all galleries or choose a gallery to use. (sc: gallery=\"galleryid\")</li>\n<li>Order: Order to display results in. You can choose; Random, Latest First, Oldest First, or NextGen Sortorder. Random will still work when a page is cached. (sc: order=\"random\"&#124;\"asc\"&#124;\"desc\"&#124;\"sortorder\")</li>\n<li>Tags: comma separated list of tags to filter results by. (sc: tags=\"tag1, tag2\")</li>\n<li>Shuffle: If order is random and this is true will shuffle images with javascript. Useful if your are caching your pages. (sc: shuffle=\"true\"&#124;\"false\")</li>\n<li>Max pictures: The maximum amount of pictures to use. (sc: max_pictures=\"6\")</li>\n<li>HTML id: HTML id to use. Defaults to \'slider\'. Needs to be different for multiple sliders on same page. (sc: html_id=\"slider\")</li>\n<li>Width: Width to use on slider. (sc: width=\"200\")</li>\n<li>Height: Height to use on slider. (sc: height=\"150\")</li>\n<li>Center: Centers content in container. Requires width to be set. (sc: center=\"1\")</li>\n</ul>\n\n<p>Nivo slider settings:</p>\n\n<p>Please check the Nivo slider home page for more details (<a href=\"http://nivo.dev7studios.com/#usage\" rel=\"nofollow\">http://nivo.dev7studios.com/#usage</a>).</p>\n\n<ul>\n<li>effect: Specify sets like: \'fold,fade,sliceDown\'. (sc: effect=\"setting\")</li>\n<li>slices: (sc: slices=\"setting\")</li>\n<li>boxCols: (sc: boxcols=\"setting\")</li>\n<li>boxRows: (sc: boxrows=\"setting\")</li>\n<li>animSpeed: Slide transition speed. (sc: animspeed=\"setting\")</li>\n<li>pauseTime: (sc: pausetime=\"setting\")</li>\n<li>startSlide: Set starting Slide (0 index). (sc: startslide=\"setting\")</li>\n<li>directionNav: Next &#38; Prev. (sc: directionnav=\"setting\")</li>\n<li>directionNavHide: Only show on hover. (sc: directionnavhide=\"setting\")</li>\n<li>controlNav: 1,2,3... (sc: controlnav=\"setting\")</li>\n<li>controlNavThumbs: Use thumbnails for Control Nav. You can choose \'nextgen thumbs\'\' that will automatically use the image\'s thumbnail from nextgen gallery or \'nextgen original\' that will use the current image. (sc: controlnavthumbs=\"true\"&#124;\"false\"&#124;\"nextgen_thumbs\"&#124;\"nextgen_original\")</li>\n<li>thumbsWidth: Resize thumbnail to this width. Recommended to set if using thumbnails. (sc: thumbswidth=\"20\")</li>\n<li>thumbsHeight: Resize thumbnail to this height. Recommended to set if using thumbnails. (sc: thumbsheight=\"20\")</li>\n<li>thumbsContainerHeight: Height for thumbnails container. Calculation should be \'number of thumbnail image rows\' x \'thumbsheight\'. (sc: thumbscontainerheight=\"20\")</li>\n<li>thumbsGap: Gap between thumbnails. (sc: thumbsgap=\"5\")</li>\n<li>controlNavThumbsFromRel: Use image rel for thumbs. (sc: controlnavthumbsfromrel=\"setting\")</li>\n<li>controlNavThumbsSearch: Replace this with... (sc: controlnavthumbssearch=\"setting\")</li>\n<li>controlNavThumbsReplace: ...this in thumb Image src. (sc: controlnavthumbsreplace=\"setting\")</li>\n<li>keyboardNav: Use left &#38; right arrows. (sc: keyboardnav=\"setting\")</li>\n<li>pauseOnHover: Stop animation while hovering. (sc: pauseonhover=\"setting\")</li>\n<li>manualAdvanc: Force manual transitions. (sc: manualadvance=\"setting\")</li>\n<li>captionOpacity: Universal caption opacity. (sc: captionopacity=\"setting\")</li>\n<li>Disable captions: (sc: disablecaptions=\"1\")</li>\n<li>beforeChange: (sc: beforechange=\"setting\")</li>\n<li>afterChange: (sc: afterchange=\"setting\")</li>\n<li>slideshowEnd: Triggers after all slides have been shown. (sc: slideshowend=\"setting\")</li>\n<li>lastSlide: Triggers when last slide is shown. (sc: lastslide=\"setting\")</li>\n<li>afterLoad: Triggers when slider has loaded. (sc: afterload=\"setting\")</li>\n</ul>\n\n<p>Nivo Effects:</p>\n\n<ul>\n<li>sliceDown</li>\n<li>sliceDownLeft</li>\n<li>sliceUp</li>\n<li>sliceUpLeft</li>\n<li>sliceUpDown</li>\n<li>sliceUpDownLeft</li>\n<li>fold</li>\n<li>fade</li>\n<li>random</li>\n<li>slideInRight</li>\n<li>slideInLeft</li>\n<li>boxRandom</li>\n<li>boxRain</li>\n<li>boxRainReverse</li>\n<li>boxRainGrow</li>\n<li>boxRainGrowReverse</li>\n</ul>\n\n<p>Shortcodes:</p>\n\n<ul>\n<li>[jj-ngg-jquery-slider html_id=\"about-slider\"]</li>\n<li>[jj-ngg-jquery-slider title=\"Hello\" gallery=\"1\" html_id=\"about-slider\" width=\"200\" height=\"150\" center=\"1\"]</li>\n<li>[jj-ngg-jquery-slider html_id=\"about-slider\" directionnav=\"false\" controlnav=\"false\"]</li>\n</ul>\n\n<p>Try out my other plugins:</p>\n\n<ul>\n<li>JJ NextGen JQuery Carousel (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-jquery-carousel/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-jquery-carousel/</a>)</li>\n<li>JJ NextGen JQuery Cycle (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-jquery-cycle/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-jquery-cycle/</a>)</li>\n<li>JJ NextGen Unload (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-unload/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-unload/</a>)</li>\n<li>JJ NextGen Image List (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-image-list/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-image-list/</a>)</li>\n<li>JJ SwfObject (<a href=\"http://wordpress.org/extend/plugins/jj-swfobject/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-swfobject/</a>)</li>\n</ul>\";s:17:\"short_description\";s:116:\"Allows you to pick a gallery from the &#039;NextGen Gallery&#039; plugin to use as a &#039;JQuery Nivo slider&#039;.\";}i:3;O:8:\"stdClass\":14:{s:4:\"name\";s:16:\"NextGEN Facebook\";s:4:\"slug\";s:16:\"nextgen-facebook\";s:7:\"version\";s:3:\"1.7\";s:6:\"author\";s:61:\"<a href=\"http://surniaulula.com/\">Jean-Sebastien Morisset</a>\";s:14:\"author_profile\";s:38:\"http://profiles.wordpress.org/jsmoriss\";s:12:\"contributors\";a:1:{s:8:\"jsmoriss\";s:38:\"http://profiles.wordpress.org/jsmoriss\";}s:8:\"requires\";s:3:\"3.0\";s:6:\"tested\";s:5:\"3.4.2\";s:13:\"compatibility\";a:1:{s:5:\"3.4.2\";a:3:{s:3:\"1.6\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}s:5:\"1.6.1\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}s:3:\"1.7\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}}s:6:\"rating\";d:92;s:11:\"num_ratings\";i:5;s:8:\"homepage\";s:53:\"http://wordpress.org/extend/plugins/nextgen-facebook/\";s:11:\"description\";s:3601:\"<p>The NextGEN Facebook plugin adds <a href=\"http://ogp.me/\">Open Graph</a> meta tags to all webpage headers, including the \"artical\" object type for posts and pages. The featured image thumbnails, from a NextGEN Gallery or Media Library, are also correctly listed in the \"image\" meta tag.  This plugin goes well beyond any other plugins I know in handling various archive-type webpages. It will create appropriate title and description meta tags for category, tag, date based archive (day, month, or year), author webpages and search results. You can also, optionally, add Facebook, Google+, Twitter and LinkedIn sharing buttons to post and page content.</p>\n\n<p>The Open Graph protocol enables any web page to become a rich object in a social graph. For instance, this is used on Facebook to allow any web page to have the same functionality as any other object on Facebook. The Open Graph meta tags are read by almost all social websites, including Facebook, Google (Search and Google+), and LinkedIn.</p>\n\n<p>NextGEN Facebook was specifically written to support featured images located in a NextGEN Gallery, but also works just as well with the WordPress Media Library. <strong>The NextGEN Gallery plugin is not required to use this plugin</strong> - all features work just as well without it. The image used in the Open Graph meta tag is chosen in this sequence; a featured image from a NextGEN Gallery or WordPress Media Library, the first NextGEN [singlepic] or IMG HTML tag in the content, a default image defined in the plugin settings. If none of these conditions can be satisfied, then the Open Graph image tag will be left empty.</p>\n\n<p>Here\'s an example of Open Graph meta tags for a post:</p>\n\n<pre><code>&#60;!-- NextGEN Facebook Meta Tags BEGIN --&#62;\n&#60;meta property=&#34;fb:app_id&#34; content=&#34;345251245549378&#34; /&#62;\n&#60;meta property=&#34;og:site_name&#34; content=&#34;The Road to Myself&#34; /&#62;\n&#60;meta property=&#34;og:title&#34; content=&#34;Odds and Ends : An Article Title&#34; /&#62;\n&#60;meta property=&#34;og:type&#34; content=&#34;article&#34; /&#62;\n&#60;meta property=&#34;og:image&#34; content=&#34;http://trtms.com/wp-content/gallery/cache/167_crop_200x200_filename.jpg&#34; /&#62;\n&#60;meta property=&#34;og:description&#34; content=&#34;An excerpt from the post, up to a specified length...&#34; /&#62;\n&#60;meta property=&#34;og:url&#34; content=&#34;http://trtms.com/2012/07/14/odds-and-ends-an-article-title/&#34; /&#62;\n&#60;meta property=&#34;article:published_time&#34; content=&#34;2012-07-14T08:54:10+00:00&#34; /&#62;\n&#60;meta property=&#34;article:modified_time&#34; content=&#34;2012-07-15T08:51:52+00:00&#34; /&#62;\n&#60;meta property=&#34;article:section&#34; content=&#34;Travel&#34; /&#62;\n&#60;meta property=&#34;article:author&#34; content=&#34;http://trtms.com/author/jsmoriss/&#34; /&#62;\n&#60;meta property=&#34;article:tag&#34; content=&#34;Some Tags&#34; /&#62;\n&#60;meta property=&#34;article:tag&#34; content=&#34;Given&#34; /&#62;\n&#60;meta property=&#34;article:tag&#34; content=&#34;To Your&#34; /&#62;\n&#60;meta property=&#34;article:tag&#34; content=&#34;Article&#34; /&#62;\n&#60;!-- NextGEN Facebook Meta Tags END --&#62;</code></pre>\n\n<p>NextGEN Facebook is being actively developed and supported. Post your comments and suggestions to the <a href=\"http://wordpress.org/support/plugin/nextgen-facebook\">NextGEN Facebook Support Page</a>, and don\'t forget to review the <a href=\"http://wordpress.org/extend/plugins/nextgen-facebook/faq/\">NextGEN Facebook FAQ Page</a> for additional notes on using the plugin.</p>\";s:17:\"short_description\";s:127:\"Adds Open Graph HTML meta tags for Facebook, G+, LinkedIn, etc. Includes optional FB, G+, Twitter and LinkedIn sharing buttons.\";}i:4;O:8:\"stdClass\":14:{s:4:\"name\";s:53:\"Advanced Custom Fields - NextGEN Gallery Field add-on\";s:4:\"slug\";s:51:\"advanced-custom-fields-nextgen-gallery-field-add-on\";s:7:\"version\";s:5:\"1.2.1\";s:6:\"author\";s:47:\"<a href=\"http://www.apollo1.cz\">Ales Loziak</a>\";s:14:\"author_profile\";s:37:\"http://profiles.wordpress.org/aloziak\";s:12:\"contributors\";a:2:{s:7:\"aloziak\";s:37:\"http://profiles.wordpress.org/aloziak\";s:8:\"Omicron7\";s:38:\"http://profiles.wordpress.org/omicron7\";}s:8:\"requires\";s:3:\"3.0\";s:6:\"tested\";s:5:\"3.4.2\";s:13:\"compatibility\";a:2:{s:5:\"3.3.2\";a:1:{s:5:\"1.0.2\";a:3:{i:0;i:100;i:1;i:2;i:2;i:2;}}s:5:\"3.4.1\";a:3:{s:5:\"1.1.2\";a:3:{i:0;i:50;i:1;i:2;i:2;i:1;}s:3:\"1.2\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}s:5:\"1.2.1\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}}s:6:\"rating\";d:84;s:11:\"num_ratings\";i:5;s:8:\"homepage\";s:88:\"http://wordpress.org/extend/plugins/advanced-custom-fields-nextgen-gallery-field-add-on/\";s:11:\"description\";s:1907:\"<p>This is an add-on for the <a href=\"http://wordpress.org/extend/plugins/advanced-custom-fields/\">Advanced Custom Fields</a> WordPress plugin and will not provide any functionality to WordPress unless dvanced Custom Fields is installed and activated.</p>\n\n<p>The NextGEN Gallery field provides a dropdown (select or multi-select) of NextGEN Gallery names (galleries and albums) and the ability to map the selected NextGEN Gallery to the post.\nThe get_value() API returns an array of the selected NextGEN Gallery IDs and the form &#8211; album or gallery.</p>\n\n<p><strong>!!! Version 1.1 change get_value() API returned value. You must change your template files. !!!</strong></p>\n\n<p>The get_value() API returns a following array:</p>\n\n<pre><code>Array (\n    &#x5b;0] =&#62; Array (\n        &#x5b;ngg_id] =&#62; 8  ( NextGEN Gallery &#039;gallery&#039; or &#039;album&#039; ID )\n        &#x5b;ngg_form] =&#62; gallery  ( &#039;gallery&#039; or &#039;album&#039; )\n    )\n)</code></pre>\n\n<h4>Example</h4>\n\n<p>These examples should show a NextGEN Gallery gallery or NextGEN Gallery album.</p>\n\n<p>For version 1.1 and later</p>\n\n<pre><code>&#60;?php\n    foreach ( get_field ( &#039;nextgen_gallery_id&#039; ) as $nextgen_gallery_id ) :\n        if ( $nextgen_gallery_id&#x5b;&#039;ngg_form&#039;] == &#039;album&#039; ) {\n            echo nggShowAlbum( $nextgen_gallery_id&#x5b;&#039;ngg_id&#039;] ); //NextGEN Gallery album\n        } elseif ( $nextgen_gallery_id&#x5b;&#039;ngg_form&#039;] == &#039;gallery&#039; ) {\n             echo nggShowGallery( $nextgen_gallery_id&#x5b;&#039;ngg_id&#039;] ); //NextGEN Gallery gallery\n        }\n    endforeach;\n?&#62;</code></pre>\n\n<p>For version 1.0.2 and earlier</p>\n\n<pre><code>&#60;?php\n    foreach (get_field (&#039;portfolio_nextgen_gallery_id&#039;) as $nextgen_gallery_id) :\n        echo nggShowGallery( $nextgen_gallery_id );\n    endforeach;\n?&#62;</code></pre>\";s:17:\"short_description\";s:121:\"Adds a NextGEN Gallery Field to Advanced Custom Fields. Select one or more NextGEN Galleries and assign them to the post.\";}i:5;O:8:\"stdClass\":14:{s:4:\"name\";s:22:\"NextGEN Scroll Gallery\";s:4:\"slug\";s:21:\"nextgen-scrollgallery\";s:7:\"version\";s:5:\"1.8.1\";s:6:\"author\";s:57:\"<a href=\"http://bmo-design.de/\">Benedikt Morschheuser</a>\";s:14:\"author_profile\";s:40:\"http://profiles.wordpress.org/bmodesign2\";s:12:\"contributors\";a:1:{s:10:\"bmodesign2\";s:40:\"http://profiles.wordpress.org/bmodesign2\";}s:8:\"requires\";s:3:\"3.1\";s:6:\"tested\";s:5:\"3.2.2\";s:13:\"compatibility\";a:1:{s:5:\"3.4.2\";a:1:{s:5:\"1.8.1\";a:3:{i:0;i:100;i:1;i:3;i:2;i:3;}}}s:6:\"rating\";d:80.7999999999999971578290569595992565155029296875;s:11:\"num_ratings\";i:80;s:8:\"homepage\";s:88:\"http://software.bmo-design.de/scrollgallery/wordpress-plugin-nextgen-scroll-gallery.html\";s:11:\"description\";s:1966:\"<p><strong>Nextgen Scroll Gallery</strong>: A Wordpress Plugin that allows you to use the awesome Mootools <strong>ScrollGallery from BMo-design</strong> on your <strong>NextGen-Gallery</strong> galleries.</p>\n\n<p>If you want to to use this Plugin on your blog, you need to use the very cool Wordpress gallery manager: <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\">NextGen Gallery</a>. So install the NextGENeration Gallery Plugin and upload some pictures. Copy the \'[scrollGallery id=xxx]\' tag in your post an replace \'xxx\' with the NextGEN Gallery id, for example with 1.</p>\n\n<p>After the installation, you will find an admin interface, with which you can adjust the plugin settings.</p>\n\n<p>This gallery do not use flash, so no extra browser plugin is required and search engines can crawl your content easily.</p>\n\n<p>If you have some questions or you need instructions look at <a href=\"http://software.bmo-design.de/scrollgallery/wordpress-plugin-nextgen-scroll-gallery.html\">BMo-Design - Nextgen Scroll Gallery</a>. There you will find instructions and discussions, which can help you.</p>\n\n<p>If you want a special adaptation to the needs of your page, you can commission me at <a href=\"http://BMo-design.de/kontakt/\">BMo-Design</a>.</p>\n\n<p>This is stable version 1.8.0. I published <strong>version 2.0.0</strong> but the new structure causes massive CSS errors in many themes.\n<strong>If you are familiar with css you will profit from the new version</strong>. 2.0.0 beta is stored as beta in the repertory. You can download it at <a href=\"http://wordpress.org/extend/plugins/nextgen-scrollgallery/download/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/nextgen-scrollgallery/download/</a>. If you use version 2.0.0 check that the fields \"imagearea\" and \"thumbarea\" are <strong>not empty</strong>!</p>\n\n<p><a href=\"http://software.bmo-design.de/scrollgallery/wordpress-plugin-scroll-gallery-2.html\">Read more</a> about version 2.</p>\";s:17:\"short_description\";s:131:\"Awesome free JavaScript gallery. BMo-Design&#039;s Mootools Javascript ScrollGallery as a Plugin for the Wordpress NextGEN Gallery.\";}i:6;O:8:\"stdClass\":14:{s:4:\"name\";s:15:\"NextGEN Gallery\";s:4:\"slug\";s:15:\"nextgen-gallery\";s:7:\"version\";s:5:\"1.9.6\";s:6:\"author\";s:51:\"<a href=\"http://www.photocrati.com/\">Photocrati</a>\";s:14:\"author_profile\";s:38:\"http://profiles.wordpress.org/alexrabe\";s:12:\"contributors\";a:1:{s:10:\"photocrati\";s:40:\"http://profiles.wordpress.org/photocrati\";}s:8:\"requires\";s:3:\"3.4\";s:6:\"tested\";s:5:\"3.4.2\";s:13:\"compatibility\";a:1:{s:5:\"3.4.2\";a:1:{s:5:\"1.9.6\";a:3:{i:0;i:85;i:1;i:40;i:2;i:34;}}}s:6:\"rating\";d:83.80000000000001136868377216160297393798828125;s:11:\"num_ratings\";i:2475;s:8:\"homepage\";s:31:\"http://www.nextgen-gallery.com/\";s:11:\"description\";s:3471:\"<p>NextGEN Gallery is the most popular photo gallery plugin for WordPress, and one of the most popular WordPress plugins of any kind with over 5 million downloads.</p>\n\n<p>It provides a powerful engine for uploading and managing galleries of images, with the ability to batch upload, import meta data, add/delete/rearrange/sort images, edit thumbnails, group galleries into albums, and more. It also provides two front-end display styles (slideshows and thumbnail galleries), both of which come with a wide array of options for controlling size, style, timing, transitions, controls, lightbox effects, and more.</p>\n\n<p><em>NextGEN Gallery is now proudly maintained by <a href=\'http://www.photocrati.com\'>Photocrati Media</a>. Special thanks to Alex Rabe who created and maintained the plugin from 2007 through 2011.</em></p>\n\n<h4>Features</h4>\n\n<p><em>Upload Galleries</em></p>\n\n<ul>\n<li>NextGEN Galleries offers diverse and powerful functionality for getting images from your desktop to your website. You can easily upload batches of images via a standard WordPress-style uploader, or upload images via zip file or FTP. NextGEN will automatically import your images&#8217; meta data.</li>\n</ul>\n\n<p><em>Manage Galleries</em></p>\n\n<ul>\n<li>Centralized gallery management.  Enjoy a single location where you can see and manage all your galleries.</li>\n<li>Edit galleries.  Add or exclude images, change gallery title and description, reorder of images, resize thumbnails.</li>\n<li>Thumbnail Management.  Turn thumbnail cropping on off, customize how individual thumbnails are cropped, and bulk resize thumbnails across one more galleries.</li>\n<li>Edit Individual Images.  Edit meta data and image tags, rotate images, exclude images.</li>\n<li>Watermarks.  Quickly add watermarks to batches or galleries of images.</li>\n<li>Albums.  Create and organize collections of galleries (&#8220;albums&#8221;), and display them in either compact or extended format.</li>\n</ul>\n\n<p><em>Display Galleries</em></p>\n\n<ul>\n<li>Two Gallery Types.  Choose between two main display styles: Slideshow and Thumbnail, and allow visitors to toggle between the two.</li>\n<li>Slideshow Galleries.  Choose from a vast array of options for slideshows, including slideshow size, transition style, speed, image order, optional navigation bar.</li>\n<li>Thumbnail Galleries.  Choose from a wide range of options to customize thumbnail galleries, including 5 different lightboxs for individual images, optional thumbnails cropping and editing, thumbnail styles, captions, and more.</li>\n<li>Single Image Displays.  Display and format single images.</li>\n<li>Work with Options Panel or ShortCodes.</li>\n</ul>\n\n<h4>Further Resources</h4>\n\n<p>*<a href=\"http://www.nextgen-gallery.com/nextgen-gallery-demos/\">Demo</a><br />\n*<a href=\"http://wordpress.org/tags/nextgen-gallery?forum_id=10\">Support</a><br />\n*<a href=\"http://www.nextgen-gallery.com/languages/\">Translations</a><br />\n*<a href=\"http://www.nextgen-gallery.com\">NextGEN Gallery Official Website</a><br />\n*<a href=\"http://www.photocrati.com\">Author Website - Photocrati Media</a><br />\n*Follow NextGEN Gallery on <a title=\"Follow NextGEN Gallery on Facebook\" href=\"http://www.facebook.com/NextGENGallery\">Facebook</a>, <a title=\"Follow NextGEN Gallery on Twitter\" href=\"http://twitter.com/NextGENGallery\">Twitter</a>, and <a title=\"Follow NextGEN Gallery on Google +\" href=\"http://plus.google.com/101643895780935290171\">Google +</a><br /></p>\";s:17:\"short_description\";s:109:\"NextGEN Gallery is a fully integrated image gallery plugin for WordPress with dozens of options and features.\";}i:7;O:8:\"stdClass\":14:{s:4:\"name\";s:23:\"JJ NextGen JQuery Cycle\";s:4:\"slug\";s:23:\"jj-nextgen-jquery-cycle\";s:7:\"version\";s:5:\"1.1.2\";s:6:\"author\";s:8:\"JJ Coder\";s:14:\"author_profile\";s:37:\"http://profiles.wordpress.org/jjcoder\";s:12:\"contributors\";a:1:{s:8:\"JJ Coder\";s:0:\"\";}s:8:\"requires\";s:3:\"2.8\";s:6:\"tested\";s:5:\"3.1.4\";s:13:\"compatibility\";a:3:{s:5:\"3.0.4\";a:3:{s:5:\"1.0.0\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}s:5:\"1.0.1\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}s:5:\"1.0.7\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}s:5:\"3.3.1\";a:1:{s:5:\"1.1.2\";a:3:{i:0;i:100;i:1;i:6;i:2;i:6;}}s:5:\"3.4.1\";a:1:{s:5:\"1.1.2\";a:3:{i:0;i:100;i:1;i:2;i:2;i:2;}}}s:6:\"rating\";d:91;s:11:\"num_ratings\";i:20;s:8:\"homepage\";N;s:11:\"description\";s:4373:\"<p>The \'JJ NextGen JQuery Cycle\' allows you to create a \'Cycle Lite\' (<a href=\"http://jquery.malsup.com/cycle/lite/\" rel=\"nofollow\">http://jquery.malsup.com/cycle/lite/</a>) as a widget or as a shortcode.\nThis plugin uses the \'NextGen Gallery\' plugin for its images.</p>\n\n<p>Requirements:</p>\n\n<ul>\n<li>NextGen Gallery Plugin (<a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/nextgen-gallery/</a>)</li>\n</ul>\n\n<p>NextGen Gallery Integration:</p>\n\n<ul>\n<li>This plugin uses the original width and height of the image uploaded so make sure the images are the correct dimensions when uploaded.</li>\n<li>If a width and height are defined under the configuration all images will be resized to those dimensions (Highly recommended).</li>\n<li>Alt &#38; Title Text Field: Provide a full url here and the image will link to this. Only works if alt field starts with either of these; /, http, or ftp.</li>\n<li>Description Field: Will be used as image alt text. If alt text is present but not a valid url alt text will be used instead for image alt text.</li>\n</ul>\n\n<p>You can specify the following parameters:</p>\n\n<p>NOTE: sc means shortcode:</p>\n\n<ul>\n<li>Title: Title. Leave blank for no title. (sc: title=\"My Cycle Lite\")</li>\n<li>Gallery: Leave blank to use all galleries or choose a gallery to use. (sc: gallery=\"galleryid\")</li>\n<li>Order: Order to display results in. You can choose; Random, Latest First, Oldest First, or NextGen Sortorder. Random will still work when a page is cached. (sc: order=\"random\"&#124;\"asc\"&#124;\"desc\"&#124;\"sortorder\")</li>\n<li>Shuffle: If order is random and this is true will shuffle images with javascript. Useful if your are caching your pages. (sc: shuffle=\"true\"&#124;\"false\")</li>\n<li>Max pictures: The maximum amount of pictures to use. (sc: max_pictures=\"6\")</li>\n<li>HTML id: HTML id to use. Defaults to \'cycle_lite\'. Needs to be different for multiple instances on same page. (sc: html_id=\"cycle_lite\")</li>\n<li>Image width: Width of image. Defaults to 200. Recommended to set this. (sc: width=\"200\")</li>\n<li>Image height: Height of image. Defaults to 200. Recommended to set this. Will prevent a floating problem if set. (sc: height=\"150\")</li>\n<li>Center: Centers content in container. Requires width to be set. (sc: center=\"1\")</li>\n</ul>\n\n<p>Cycle Lite settings:</p>\n\n<p>Please check the cycle lite home page form more information (<a href=\"http://jquery.malsup.com/cycle/lite/\" rel=\"nofollow\">http://jquery.malsup.com/cycle/lite/</a>).</p>\n\n<ul>\n<li>timeout: Milliseconds between slide transitions (0 to disable auto advance).. (sc: timeout=\"4000\")</li>\n<li>speed: Speed of the transition (any valid fx speed value). (sc: speed=\"1000\")</li>\n<li>sync: True if in/out transitions should occur simultaneously. (sc: sync=\"1\")</li>\n<li>fit: Force slides to fit container. (sc: fit=\"0\")</li>\n<li>pause: True to enable \"pause on hover\". (sc: pause=\"1\")</li>\n<li>delay: Additional delay (in ms) for first transition (hint: can be negative). (sc: delay=\"2)</li>\n</ul>\n\n<p>Shortcode Examples:</p>\n\n<ul>\n<li>[jj-ngg-jquery-cycle html_id=\"about-cycle-lite\" gallery=\"1\" width=\"200\" height=\"150\"]</li>\n<li>[jj-ngg-jquery-cycle title=\"Hello\" html_id=\"about-cycle-lite\" gallery=\"1\" timeout=\"3000\" speed=\"1000\"]</li>\n<li>[jj-ngg-jquery-cycle html_id=\"about-cycle\" gallery=\"2\" width=\"150\" height=\"100\" timeout=\"3000\" speed=\"1000\" fit=\"1\"]</li>\n</ul>\n\n<p>Try out my other plugins:</p>\n\n<ul>\n<li>JJ NextGen JQuery Slider (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-jquery-slider/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-jquery-slider/</a>)</li>\n<li>JJ NextGen JQuery Carousel (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-jquery-carousel/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-jquery-carousel/</a>)</li>\n<li>JJ NextGen Unload (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-unload/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-unload/</a>)</li>\n<li>JJ NextGen Image List (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-image-list/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-image-list/</a>)</li>\n<li>JJ SwfObject (<a href=\"http://wordpress.org/extend/plugins/jj-swfobject/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-swfobject/</a>)</li>\n</ul>\";s:17:\"short_description\";s:115:\"Allows you to pick a gallery from the &#039;NextGen Gallery&#039; plugin to use with &#039;JQuery Cycle Lite&#039;.\";}i:8;O:8:\"stdClass\":14:{s:4:\"name\";s:26:\"JJ NextGen JQuery Carousel\";s:4:\"slug\";s:26:\"jj-nextgen-jquery-carousel\";s:7:\"version\";s:5:\"1.1.8\";s:6:\"author\";s:8:\"JJ Coder\";s:14:\"author_profile\";s:37:\"http://profiles.wordpress.org/jjcoder\";s:12:\"contributors\";a:1:{s:8:\"JJ Coder\";s:0:\"\";}s:8:\"requires\";s:3:\"2.8\";s:6:\"tested\";s:5:\"3.1.4\";s:13:\"compatibility\";a:13:{s:5:\"3.0.1\";a:1:{s:5:\"1.1.8\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}s:5:\"3.0.4\";a:2:{s:5:\"1.0.0\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}s:5:\"1.0.3\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}s:5:\"3.0.5\";a:1:{s:5:\"1.1.5\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}s:3:\"3.1\";a:5:{s:5:\"1.0.3\";a:3:{i:0;i:0;i:1;i:1;i:2;i:0;}s:5:\"1.0.7\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}s:5:\"1.0.9\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}s:5:\"1.1.5\";a:3:{i:0;i:100;i:1;i:2;i:2;i:2;}s:5:\"1.1.8\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}s:5:\"3.1.1\";a:1:{s:5:\"1.1.8\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}s:5:\"3.1.2\";a:1:{s:5:\"1.1.8\";a:3:{i:0;i:75;i:1;i:4;i:2;i:3;}}s:5:\"3.1.3\";a:1:{s:5:\"1.1.8\";a:3:{i:0;i:100;i:1;i:3;i:2;i:3;}}s:3:\"3.2\";a:1:{s:5:\"1.1.8\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}s:5:\"3.2.1\";a:1:{s:5:\"1.1.8\";a:3:{i:0;i:67;i:1;i:3;i:2;i:2;}}s:3:\"3.3\";a:1:{s:5:\"1.1.8\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}s:5:\"3.3.1\";a:1:{s:5:\"1.1.8\";a:3:{i:0;i:80;i:1;i:10;i:2;i:8;}}s:5:\"3.3.2\";a:1:{s:5:\"1.1.8\";a:3:{i:0;i:100;i:1;i:2;i:2;i:2;}}s:5:\"3.4.1\";a:1:{s:5:\"1.1.8\";a:3:{i:0;i:75;i:1;i:4;i:2;i:3;}}}s:6:\"rating\";d:85.6000000000000085265128291212022304534912109375;s:11:\"num_ratings\";i:36;s:8:\"homepage\";N;s:11:\"description\";s:5464:\"<p>The \'JJ NextGen JQuery Carousel\' allows you to create a \'JCarousel\' (<a href=\"http://sorgalla.com/projects/jcarousel/\" rel=\"nofollow\">http://sorgalla.com/projects/jcarousel/</a>) as a widget or as a shortcode.\nThis plugin uses the \'NextGen Gallery\' plugin for its images.</p>\n\n<p>Requirements:</p>\n\n<ul>\n<li>NextGen Gallery Plugin (<a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/nextgen-gallery/</a>)</li>\n</ul>\n\n<p>NextGen Gallery Integration:</p>\n\n<ul>\n<li>This plugin uses the original width and height of the image uploaded so make sure the images are the correct dimensions when uploaded.</li>\n<li>If a width and height are defined under the configuration all images will be resized to those dimensions (Highly recommended).</li>\n<li>Alt &#38; Title Text Field: Provide a full url here and the image will link to this. Only works if alt field starts with either of these; /, http, or ftp.</li>\n<li>Description Field: Will be used as image alt text. If alt text is present but not a valid url alt text will be used instead for image alt text.</li>\n</ul>\n\n<p>You can specify the following parameters:</p>\n\n<p>NOTE: sc means shortcode:</p>\n\n<ul>\n<li>Title: Title. Leave blank for no title. (sc: title=\"My Carousel\")</li>\n<li>Gallery: Leave blank to use all galleries or choose a gallery to use. (sc: gallery=\"galleryid\")</li>\n<li>Order: Order to display results in. You can choose; Random, Latest First, Oldest First, or NextGen Sortorder. Random will still work when a page is cached. (sc: order=\"random\"&#124;\"asc\"&#124;\"desc\"&#124;\"sortorder\")</li>\n<li>Shuffle: If order is random and this is true will shuffle images with javascript. Useful if your are caching your pages. (sc: shuffle=\"true\"&#124;\"false\")</li>\n<li>Max pictures: The maximum amount of pictures to use. (sc: max_pictures=\"6\")</li>\n<li>HTML id: HTML id to use. Defaults to \'jcarousel\'. Needs to be different for multiple instances on same page. (sc: html_id=\"jcarousel\")</li>\n<li>Skin class: Class of skinning to use. Defaults to use the tango skin. (sc: skin_class=\"jcarousel-skin-tango\")</li>\n<li>Image width: Width of image. Defaults to 75. (sc: width=\"200\")</li>\n<li>Image height: Height of image. Defaults to 75. (sc: height=\"150\")</li>\n<li>Image gap: Gap between images. (sc: gap=\"5\")</li>\n</ul>\n\n<p>JCarousel settings:</p>\n\n<p>Please check the JCarousel home page for more details (<a href=\"http://sorgalla.com/projects/jcarousel/#Configuration\" rel=\"nofollow\">http://sorgalla.com/projects/jcarousel/#Configuration</a>).</p>\n\n<ul>\n<li>vertical: Specifies wether the carousel appears in horizontal or vertical orientation. Changes the carousel from a left/right style to a up/down style carousel. (sc: vertical=\"setting\")</li>\n<li>rtl: Specifies whether the carousel appears in RTL (Right-To-Left) mode. (sc: rtl=\"setting\")</li>\n<li>start: The index of the item to start with. (sc: start=\"setting\")</li>\n<li>offset: The index of the first available item at initialisation. (sc: offset=\"setting\")</li>\n<li>size: Size of existing elements if size is not passed explicitly uses the number of total items. (sc: size=\"setting\")</li>\n<li>scroll: The number of items to scroll by. (sc: scroll=\"setting\")</li>\n<li>visible: If passed, the width/height of the items will be calculated and set depending on the width/height of the clipping, so that exactly that number of items will be visible. (sc: visible=\"setting\")</li>\n<li>animation: The speed of the scroll animation as string in jQuery terms (\"slow\" or \"fast\") or milliseconds as integer (See jQuery Documentation). If set to 0, animation is turned off. (sc: animation=\"setting\")</li>\n<li>easing: The name of the easing effect that you want to use (See jQuery Documentation). (sc: easing=\"setting\")</li>\n<li>auto: Specifies how many seconds to periodically autoscroll the content. If set to 0 (default) then autoscrolling is turned off. (sc: auto=\"setting\")</li>\n<li>wrap: Specifies whether to wrap at the first/last item (or both) and jump back to the start/end. Options are \"first\", \"last\", \"both\" or \"circular\" as string. If set to null, wrapping is turned off (default). (sc: wrap=\"setting\")</li>\n</ul>\n\n<p>Shortcode Examples:</p>\n\n<ul>\n<li>[jj-ngg-jquery-carousel html_id=\"about-jcarousel\" gallery=\"1\"]</li>\n<li>[jj-ngg-jquery-carousel title=\"Hello\" html_id=\"about-jcarousel\" gallery=\"1\" vertical=\"true\"]</li>\n<li>[jj-ngg-jquery-carousel html_id=\"about-jcarousel\" gallery=\"2\" width=\"150\" height=\"100\" visible=\"2\" scroll=\"1\" auto=\"3\"]</li>\n</ul>\n\n<p>Try out my other plugins:</p>\n\n<ul>\n<li>JJ NextGen JQuery Slider (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-jquery-slider/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-jquery-slider/</a>)</li>\n<li>JJ NextGen JQuery Cycle (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-jquery-cycle/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-jquery-cycle/</a>)</li>\n<li>JJ NextGen Unload (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-unload/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-unload/</a>)</li>\n<li>JJ NextGen Image List (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-image-list/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-image-list/</a>)</li>\n<li>JJ SwfObject (<a href=\"http://wordpress.org/extend/plugins/jj-swfobject/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-swfobject/</a>)</li>\n</ul>\";s:17:\"short_description\";s:114:\"Allows you to pick a gallery from the &#039;NextGen Gallery&#039; plugin to use as a &#039;JQuery JCarousel&#039;.\";}i:9;O:8:\"stdClass\":14:{s:4:\"name\";s:26:\"NextGEN Gallery ColorBoxer\";s:4:\"slug\";s:26:\"nextgen-gallery-colorboxer\";s:7:\"version\";s:3:\"1.0\";s:6:\"author\";s:59:\"<a href=\"http://www.markstechnologynews.com\">Mark Jeldi</a>\";s:14:\"author_profile\";s:40:\"http://profiles.wordpress.org/mark-jeldi\";s:12:\"contributors\";a:1:{s:10:\"Mark Jeldi\";s:40:\"http://profiles.wordpress.org/mark-jeldi\";}s:8:\"requires\";s:5:\"3.1.2\";s:6:\"tested\";s:5:\"3.3.2\";s:13:\"compatibility\";a:3:{s:5:\"3.3.1\";a:1:{s:3:\"1.0\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}s:5:\"3.3.2\";a:1:{s:3:\"1.0\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}s:5:\"3.4.1\";a:1:{s:3:\"1.0\";a:3:{i:0;i:100;i:1;i:4;i:2;i:4;}}}s:6:\"rating\";d:95;s:11:\"num_ratings\";i:4;s:8:\"homepage\";N;s:11:\"description\";s:1250:\"<h4>NextGEN Gallery ColorBoxer</h4>\n\n<p>NextGEN Gallery ColorBoxer automatically integrates the cool ColorBox lightbox effect with your NextGEN galleries, and only loads ColorBox\'s scripts and styles when a gallery shortcode is present, improving your site\'s page load speed.</p>\n\n<p>Note: For optimization of NextGEN Gallery\'s scripts and styles, please see <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery-optimizer/\">NextGEN Gallery Optimizer</a></p>\n\n<p>If you have any questions, suggestions, ideas or feedback, please email me at <a href=\"mailto:mark@markstechnologynews.com\">mark@markstechnologynews.com</a></p>\n\n<h4>Key features:</h4>\n\n<ol>\n<li>One-click install of the ColorBox lightbox to display your images in style.</li>\n<li>Only loads ColorBox\'s scripts and styles when a gallery shortcode is present.</li>\n<li>Helps improve your site\'s page load speed.</li>\n</ol>\n\n<p>NextGEN Gallery Fancyboxer also includes a couple of compatibility fixes right off the bat, including:</p>\n\n<ol>\n<li>ColorBox not working in IE6</li>\n<li>Conflicts with the jQuery $ selector in ColorBox\'s invocation code</li>\n</ol>\n\n<h4>Requirements:</h4>\n\n<ol>\n<li>WordPress version 3.1 or later</li>\n<li>NextGEN Gallery version 1.6.2 or later</li>\n</ol>\";s:17:\"short_description\";s:109:\"One-click ColorBox lightbox integration with NextGEN Gallery. Only loads when a gallery shortcode is present.\";}i:10;O:8:\"stdClass\":14:{s:4:\"name\";s:21:\"JJ NextGen Image List\";s:4:\"slug\";s:21:\"jj-nextgen-image-list\";s:7:\"version\";s:5:\"1.0.3\";s:6:\"author\";s:8:\"JJ Coder\";s:14:\"author_profile\";s:37:\"http://profiles.wordpress.org/jjcoder\";s:12:\"contributors\";a:1:{s:8:\"JJ Coder\";s:0:\"\";}s:8:\"requires\";s:3:\"2.8\";s:6:\"tested\";s:5:\"3.1.4\";s:13:\"compatibility\";a:4:{s:5:\"3.0.5\";a:1:{s:5:\"1.0.0\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}s:3:\"3.1\";a:2:{s:5:\"1.0.1\";a:3:{i:0;i:50;i:1;i:2;i:2;i:1;}s:5:\"1.0.3\";a:3:{i:0;i:0;i:1;i:1;i:2;i:0;}}s:5:\"3.1.3\";a:1:{s:5:\"1.0.3\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}s:5:\"3.3.1\";a:1:{s:5:\"1.0.3\";a:3:{i:0;i:0;i:1;i:1;i:2;i:0;}}}s:6:\"rating\";d:100;s:11:\"num_ratings\";i:8;s:8:\"homepage\";N;s:11:\"description\";s:3384:\"<p>The \'JJ NextGen List\' allows you to create an image list as a widget or as a shortcode.\nThis plugin uses the \'NextGen Gallery\' plugin for its images.</p>\n\n<p>Requirements:</p>\n\n<ul>\n<li>NextGen Gallery Plugin (<a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/nextgen-gallery/</a>)</li>\n</ul>\n\n<p>NextGen Gallery Integration:</p>\n\n<ul>\n<li>This plugin uses the original width and height of the image uploaded so make sure the images are the correct dimensions when uploaded.</li>\n<li>If a width and height are defined under the configuration all images will be resized to those dimensions=.</li>\n<li>Alt &#38; Title Text Field: Provide a full url here and the image will link to this. Only works if alt field starts with either of these; /, http, or ftp.</li>\n<li>Description Field: Will be used as image alt text. If alt text is present but not a valid url alt text will be used instead for image alt text.</li>\n</ul>\n\n<p>You can specify the following parameters:</p>\n\n<p>NOTE: sc means shortcode:</p>\n\n<ul>\n<li>Title: Title. Leave blank for no title. (sc: title=\"My Image List\")</li>\n<li>Gallery: Leave blank to use all galleries or choose a gallery to use. (sc: gallery=\"galleryid\")</li>\n<li>Order: Order to display results in. You can choose; Random, Latest First, Oldest First, or NextGen Sortorder. Random will still work when a page is cached. (sc: order=\"random\"&#124;\"asc\"&#124;\"desc\"&#124;\"sortorder\")</li>\n<li>Shuffle: If order is random and this is true will shuffle images with javascript. Useful if your are caching your pages. (sc: shuffle=\"true\"&#124;\"false\")</li>\n<li>Orientation: Can pick vertical or horizontal defaults to vertical. (sc: orientation=\"vertical\"&#124;\"horizontal\")</li>\n<li>Max pictures: The maximum amount of pictures to use. (sc: max_pictures=\"6\")</li>\n<li>HTML id: HTML id to use. Defaults to \'image_list\'. Needs to be different for multiple instances on same page. (sc: html_id=\"image_list\")</li>\n<li>Image width: All images with be assigned this width. (sc: width=\"200\")</li>\n<li>Image height: All images with be assigned this height. (sc: height=\"150\")</li>\n<li>Image gap: Gap between images. (sc: gap=\"5\")</li>\n<li>Center: Centers content in container. Requires width to be set. (sc: center=\"1\")</li>\n</ul>\n\n<p>Shortcode Examples:</p>\n\n<ul>\n<li>[jj-ngg-image-list html_id=\"about-image-list\" gallery=\"1\" width=\"200\" height=\"150\"]</li>\n</ul>\n\n<p>Try out my other plugins:</p>\n\n<ul>\n<li>JJ NextGen JQuery Slider (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-jquery-slider/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-jquery-slider/</a>)</li>\n<li>JJ NextGen JQuery Carousel (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-jquery-carousel/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-jquery-carousel/</a>)</li>\n<li>JJ NextGen JQuery Cycle (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-jquery-cycle/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-jquery-cycle/</a>)</li>\n<li>JJ NextGen Unload (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-unload/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-unload/</a>)</li>\n<li>JJ SwfObject (<a href=\"http://wordpress.org/extend/plugins/jj-swfobject/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-swfobject/</a>)</li>\n</ul>\";s:17:\"short_description\";s:141:\"Allows you to pick a gallery from the &#039;NextGen Gallery&#039; plugin to list images from. You can list images vertically or horizontally.\";}i:11;O:8:\"stdClass\":14:{s:4:\"name\";s:19:\"NextGEN Gallery geo\";s:4:\"slug\";s:19:\"nextgen-gallery-geo\";s:7:\"version\";s:3:\"1.0\";s:6:\"author\";s:59:\"<a href=\"http://www.denktfrei.de/\">Frederic Stuhldreier</a>\";s:14:\"author_profile\";s:39:\"http://profiles.wordpress.org/frestde-1\";s:12:\"contributors\";a:1:{s:8:\"frest.de\";s:39:\"http://profiles.wordpress.org/frestde-1\";}s:8:\"requires\";s:5:\"3.0.1\";s:6:\"tested\";s:5:\"3.4.2\";s:13:\"compatibility\";a:1:{s:5:\"3.4.2\";a:1:{s:3:\"1.0\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}}s:6:\"rating\";d:80;s:11:\"num_ratings\";i:8;s:8:\"homepage\";s:56:\"http://wordpress.org/extend/plugins/nextgen-gallery-geo/\";s:11:\"description\";s:837:\"<p>NextGEN Gallery geo is a flexibe plugin, displaying beautiful maps with your photos by using EXIF Data or geocoding.\nThe NextGEN Gallery plugin is required to use this plugin.</p>\n\n<h4>Features</h4>\n\n<ul>\n<li>creating maps with your photos, using EXIF data</li>\n<li>geocoding the gallery-name</li>\n<li>include your maps by using shortcodes, AJAX requests or the php-function, even outside of The Loop</li>\n<li>include maps automatically in every post with a gallery</li>\n<li>easy optionspanel: configure any option you desire</li>\n<li>Language support : use your own translation</li>\n<li>Route mode with .GPX support: Linking the photos on the map in chronological order. Nice tool, to display your travel route</li>\n<li>Worldmap mode: Showing (and linking) all your galleries on an overview map, load more photos via AJAX!</li>\n</ul>\";s:17:\"short_description\";s:116:\"NextGEN Gallery geo is a flexibe plugin, displaying beautiful maps with your photos by using EXIF Data or geocoding.\";}i:12;O:8:\"stdClass\":14:{s:4:\"name\";s:17:\"JJ NextGen Unload\";s:4:\"slug\";s:17:\"jj-nextgen-unload\";s:7:\"version\";s:5:\"1.0.2\";s:6:\"author\";s:8:\"JJ Coder\";s:14:\"author_profile\";s:37:\"http://profiles.wordpress.org/jjcoder\";s:12:\"contributors\";a:1:{s:8:\"JJ Coder\";s:0:\"\";}s:8:\"requires\";s:4:\"1.79\";s:6:\"tested\";s:5:\"3.1.4\";s:13:\"compatibility\";a:1:{s:5:\"3.0.4\";a:1:{s:5:\"1.0.0\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}}s:6:\"rating\";d:100;s:11:\"num_ratings\";i:2;s:8:\"homepage\";N;s:11:\"description\";s:1097:\"<p>Prevents NextGen Gallery scripts and style from loading in to header. Useful if you don\'t want to use the NextGen Widgets or NextGen Gallery.</p>\n\n<p>Try out my other plugins:</p>\n\n<ul>\n<li>JJ NextGen JQuery Slider (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-jquery-slider/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-jquery-slider/</a>)</li>\n<li>JJ NextGen JQuery Carousel (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-jquery-carousel/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-jquery-carousel/</a>)</li>\n<li>JJ NextGen JQuery Cycle (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-jquery-cycle/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-jquery-cycle/</a>)</li>\n<li>JJ NextGen Image List (<a href=\"http://wordpress.org/extend/plugins/jj-nextgen-image-list/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-nextgen-image-list/</a>)</li>\n<li>JJ SwfObject (<a href=\"http://wordpress.org/extend/plugins/jj-swfobject/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/jj-swfobject/</a>)</li>\n</ul>\";s:17:\"short_description\";s:127:\"Prevents NextGen Gallery scripts and style from loading in to header. Useful if you don&#039;t want to use the NextGen Widgets.\";}i:13;O:8:\"stdClass\":14:{s:4:\"name\";s:21:\"NextGEN Custom Fields\";s:4:\"slug\";s:29:\"nextgen-gallery-custom-fields\";s:7:\"version\";s:5:\"1.2.2\";s:6:\"author\";s:13:\"Shaun Alberts\";s:14:\"author_profile\";s:36:\"http://profiles.wordpress.org/shauno\";s:12:\"contributors\";a:1:{s:6:\"shauno\";s:36:\"http://profiles.wordpress.org/shauno\";}s:8:\"requires\";s:5:\"2.7.1\";s:6:\"tested\";s:5:\"3.3.2\";s:13:\"compatibility\";a:1:{s:5:\"3.4.2\";a:1:{s:5:\"1.2.2\";a:3:{i:0;i:33;i:1;i:3;i:2;i:1;}}}s:6:\"rating\";d:82.2000000000000028421709430404007434844970703125;s:11:\"num_ratings\";i:27;s:8:\"homepage\";N;s:11:\"description\";s:827:\"<p><strong>Please use version 1.0.2 for version of NGG LOWER than 1.7.x.  Please use version 1.1.2 or greater for versions of NGG &#62;= 1.7.x</strong></p>\n\n<p>This plugin was developed to add custom columns to the excellent and popular NextGEN Gallery plugin.  Simply enter the name of your new field(s), select between \"input\", \"textarea\" or \"dropdown\", and the field(s) will be automatically added to the manage images form in the NGG admin panel.\nAnd as of version 0.4, you can now add custom fields to NextGEN galleries too!</p>\n\n<p><strong>QUESTIONS ASKED ON THE FORUM THAT ARE IN THE FAQ WILL NOT BE ANSWERED BY ME</strong></p>\n\n<p>I was recently in a motorcycle accident, and am not online too much anymore anyway.  Feel free to donate via the link on the right to by me a beer and get me through this tough time :)</p>\";s:17:\"short_description\";s:92:\"Creates the ability to quickly and easily add custom fields to NextGEN Galleries and Images.\";}i:14;O:8:\"stdClass\":14:{s:4:\"name\";s:20:\"NextGEN Gallery Date\";s:4:\"slug\";s:20:\"nextgen-gallery-date\";s:7:\"version\";s:5:\"0.1.5\";s:6:\"author\";s:56:\"<a href=\"http://www.cantarano.com\">Roberto Cantarano</a>\";s:14:\"author_profile\";s:38:\"http://profiles.wordpress.org/robertoc\";s:12:\"contributors\";a:1:{s:17:\"Roberto Cantarano\";s:0:\"\";}s:8:\"requires\";s:3:\"3.1\";s:6:\"tested\";s:5:\"3.2.1\";s:13:\"compatibility\";a:0:{}s:6:\"rating\";d:100;s:11:\"num_ratings\";i:1;s:8:\"homepage\";N;s:11:\"description\";s:944:\"<p><strong>Please use at least version 1.8.3 of NextGEN Gallery. This plugin is not tested with lower versions</strong></p>\n\n<p><strong>[ A T T E N T I O N ] NextGEN Gallery core modification required!</strong></p>\n\n<p>Read <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery-date/installation/\">installation page</a></p>\n\n<p>NextGEN Gallery Date is an add-on for the best wordpress gallery plugin i have seen! With my plugin, you can sort galleries by date, show gallery creation and modificatio date inside gallery templates.\nIt adds two new columns for gallery table:</p>\n\n<ul>\n<li><p>added_date (on gallery creation)</p></li>\n<li><p>modified_date (on gallery modification and upload of pics)</p></li>\n</ul>\n\n<h4>Features</h4>\n\n<ul>\n<li>Gallery order by date: Check the Ngg Date admin panel to activate the order options in every manage album page.</li>\n<li>Date info: show 3 kinds of date format (read installation info)</li>\n</ul>\";s:17:\"short_description\";s:112:\"This plugin will let you sort the galleries by date and get info about gallery creation (and modification) date.\";}i:15;O:8:\"stdClass\":14:{s:4:\"name\";s:21:\"NextGEN Image Cropper\";s:4:\"slug\";s:21:\"nextgen-image-cropper\";s:7:\"version\";s:3:\"1.0\";s:6:\"author\";s:48:\"<a href=\"http://www.omegafi.com\">Mitch McCoy</a>\";s:14:\"author_profile\";s:40:\"http://profiles.wordpress.org/mitchmccoy\";s:12:\"contributors\";a:1:{s:11:\"Mitch McCoy\";s:0:\"\";}s:8:\"requires\";s:3:\"3.0\";s:6:\"tested\";s:5:\"3.2.1\";s:13:\"compatibility\";a:3:{s:5:\"3.2.1\";a:1:{s:3:\"1.0\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}s:5:\"3.3.1\";a:1:{s:3:\"1.0\";a:3:{i:0;i:0;i:1;i:2;i:2;i:0;}}s:5:\"3.4.1\";a:1:{s:3:\"1.0\";a:3:{i:0;i:0;i:1;i:3;i:2;i:0;}}}s:6:\"rating\";d:100;s:11:\"num_ratings\";i:1;s:8:\"homepage\";s:22:\"http://www.omegafi.com\";s:11:\"description\";s:338:\"<p>NextGEN Image Cropper uses the jQuery jCrop plugin(included) to allow a user to crop an image within a NextGen gallery.\nUsing NextGen Gallery libraries, a backup of the original image is made and the image is cropped based on selected dimensions and saved.\nThe NextGen image meta data is also updated with the new image dimensions.</p>\";s:17:\"short_description\";s:85:\"NextGEN Image Cropper extends the NextGen Gallery plugin to allow cropping of images.\";}i:16;O:8:\"stdClass\":14:{s:4:\"name\";s:23:\"NextGEN Gallery Authors\";s:4:\"slug\";s:23:\"nextgen-gallery-authors\";s:7:\"version\";s:5:\"0.2.5\";s:6:\"author\";s:56:\"<a href=\"http://www.cantarano.com\">Roberto Cantarano</a>\";s:14:\"author_profile\";s:38:\"http://profiles.wordpress.org/robertoc\";s:12:\"contributors\";a:1:{s:17:\"Roberto Cantarano\";s:0:\"\";}s:8:\"requires\";s:3:\"3.1\";s:6:\"tested\";s:5:\"3.2.1\";s:13:\"compatibility\";a:0:{}s:6:\"rating\";d:100;s:11:\"num_ratings\";i:1;s:8:\"homepage\";N;s:11:\"description\";s:488:\"<p><strong>Please use at least version 1.8.3 of NextGEN Gallery. This plugin is not tested with lower versions</strong></p>\n\n<p><strong>[ A T T E N T I O N ] NextGEN Gallery core modification required!</strong></p>\n\n<p>Read <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery-authors/installation/\">installation page</a></p>\n\n<p>NextGEN Gallery Authors is an add-on for the best wordpress gallery plugin i have seen! With my plugin, you can show galleries filtered by author.</p>\";s:17:\"short_description\";s:59:\"This plugin will let you show galleries filtered by author.\";}i:17;O:8:\"stdClass\":14:{s:4:\"name\";s:29:\"WordPress NextGen GalleryView\";s:4:\"slug\";s:29:\"wordpress-nextgen-galleryview\";s:7:\"version\";s:5:\"0.5.2\";s:6:\"author\";s:53:\"<a href=\"http://blog.hybridindie.com/\">John Brien</a>\";s:14:\"author_profile\";s:41:\"http://profiles.wordpress.org/hybridindie\";s:12:\"contributors\";a:0:{}s:8:\"requires\";N;s:6:\"tested\";s:5:\"3.0.5\";s:13:\"compatibility\";a:1:{s:5:\"3.4.2\";a:1:{s:5:\"0.5.2\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}}s:6:\"rating\";d:84;s:11:\"num_ratings\";i:30;s:8:\"homepage\";s:23:\"http://hybridindie.com/\";s:11:\"description\";s:553:\"<p><strong>Nextgen GalleryView</strong>: A Wordpress Plugin that allows you to use the jQuery GalleryView Plugin with your <strong>NextGen-Gallery</strong> galleries.</p>\n\n<p>In order to use the GalleryView Plugin you kinda need to be using <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\">NextGen Gallery</a>.</p>\n\n<p>You can see it live on my woodworking portfolio <a href=\"http://jbmodernwoodworks.com/\">John Brien Modern Woodworks</a>.\nYou can read about it on my blog of rants <a href=\"http://blog.hybridindie.com/\">John Brien</a></p>\";s:17:\"short_description\";s:150:\"jQuery JavaScript Gallery plugin extending NextGen Gallery&#039;s slideshow abilities without breakage. Uses GalleryView - jQuery Content Gallery Plug\";}i:18;O:8:\"stdClass\":14:{s:4:\"name\";s:22:\"NextGEN Gallery Voting\";s:4:\"slug\";s:22:\"nextgen-gallery-voting\";s:7:\"version\";s:5:\"2.0.1\";s:6:\"author\";s:47:\"<a href=\"http://shauno.co.za\">Shaun Alberts</a>\";s:14:\"author_profile\";s:36:\"http://profiles.wordpress.org/shauno\";s:12:\"contributors\";a:1:{s:6:\"shauno\";s:36:\"http://profiles.wordpress.org/shauno\";}s:8:\"requires\";s:5:\"2.9.1\";s:6:\"tested\";s:5:\"3.4.2\";s:13:\"compatibility\";a:1:{s:5:\"3.4.2\";a:2:{s:6:\"1.10.1\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}s:5:\"2.0.1\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}}s:6:\"rating\";d:71.3999999999999914734871708787977695465087890625;s:11:\"num_ratings\";i:42;s:8:\"homepage\";s:53:\"http://shauno.co.za/wordpress-nextgen-gallery-voting/\";s:11:\"description\";s:556:\"<p>This plugin adds the ability for users to vote on NextGEN Galleries and Images. A few basic options give the ability to limit who can vote on what.</p>\n\n<p>NGG Voting was inspired by a request from <a href=\"http://www.schlegelphotography.com/\">Troy Schlegel of Schlegel Photography</a>.  Please read the FAQ for more info on how it works.</p>\n\n<p>Please read the FAQ, as you are required to add a tag to templates for certain functionality to work!</p>\n\n<p><strong>QUESTIONS ASKED ON THE FORUM THAT ARE IN THE FAQ WILL NOT BE ANSWERED BY ME</strong></p>\";s:17:\"short_description\";s:147:\"This plugin adds the ability for users to vote on NextGEN Galleries and Images. A few basic options give the ability to limit who can vote on what.\";}i:19;O:8:\"stdClass\":14:{s:4:\"name\";s:94:\"NextGEN to WiziApp - Integrate image galleries &#38; albums to your WiziApp powered iPhone App\";s:4:\"slug\";s:18:\"nextgen-to-wiziapp\";s:7:\"version\";s:5:\"1.0.4\";s:6:\"author\";s:6:\"mayerz\";s:14:\"author_profile\";s:36:\"http://profiles.wordpress.org/mayerz\";s:12:\"contributors\";a:1:{s:6:\"mayerz\";s:36:\"http://profiles.wordpress.org/mayerz\";}s:8:\"requires\";s:3:\"3.0\";s:6:\"tested\";s:5:\"3.2.1\";s:13:\"compatibility\";a:0:{}s:6:\"rating\";i:0;s:11:\"num_ratings\";i:0;s:8:\"homepage\";N;s:11:\"description\";s:832:\"<p>This plugin integrates with your Wiziapp powered iPhone App.</p>\n\n<p>WiziApp is a plugin that turns your WordPress powered web site into a native iPhone App. <a href=\"http://wordpress.org/extend/plugins/wiziapp-create-your-own-native-iphone-app/\">Click here</a> for more information.</p>\n\n<p>This plugin collects all your Nextgen images, Galleries and albums and add it to your Wiziapp powered iPhone App Albums.</p>\n\n<p>To learn more about Wiziapp albums feature, visit the <a href=\"http://www.wiziapp.com/tour\">Wiziapp plugin tour</a> .</p>\n\n<p>The Wiziapp to Nextgen plugin works in conjunction with the Wiziapp <a href=\"http://wordpress.org/extend/plugins/wiziapp-create-your-own-native-iphone-app/\">install now</a> &#38; the Nextgen <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\">install now</a> plugins.</p>\";s:17:\"short_description\";s:93:\"Integrates Nextgen managed images, galleries and albums with your Wiziapp powered iphone app.\";}i:20;O:8:\"stdClass\":14:{s:4:\"name\";s:24:\"NextGEN Gallery Comments\";s:4:\"slug\";s:24:\"nextgen-gallery-comments\";s:7:\"version\";s:5:\"0.1.5\";s:6:\"author\";s:56:\"<a href=\"http://www.cantarano.com\">Roberto Cantarano</a>\";s:14:\"author_profile\";s:38:\"http://profiles.wordpress.org/robertoc\";s:12:\"contributors\";a:1:{s:17:\"Roberto Cantarano\";s:0:\"\";}s:8:\"requires\";s:5:\"2.9.1\";s:6:\"tested\";s:5:\"3.2.1\";s:13:\"compatibility\";a:3:{s:5:\"3.2.1\";a:2:{s:3:\"0.1\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}s:5:\"0.1.3\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}s:3:\"3.3\";a:1:{s:5:\"0.1.5\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}s:5:\"3.4.1\";a:1:{s:5:\"0.1.5\";a:3:{i:0;i:100;i:1;i:2;i:2;i:2;}}}s:6:\"rating\";d:95;s:11:\"num_ratings\";i:4;s:8:\"homepage\";N;s:11:\"description\";s:881:\"<p><strong>Please use at least version 1.8.3 of NextGEN Gallery. This plugin is not tested with lower versions</strong></p>\n\n<p>NextGEN Gallery Comments give power to the best wordpress gallery plugin i have seen! With my plugin, now all users can leave comments to your galleries. Comments are also displayed in admin in Comments section and in manage gallery page.</p>\n\n<p>** * * NOTE * * **</p>\n\n<p>For now, comments are show on galleries only when they are not called directly in post/page with shortcode. Example:</p>\n\n<p>[nggallery id=X]  ----&#62; gallery comments are not showed</p>\n\n<p>[album id=X] ----&#62; gallery comments are showed (Not in album list, but inside the gallery page)</p>\n\n<p>I will check in next release to find a way to do it.</p>\n\n<h4>Features</h4>\n\n<ul>\n<li>Template : You can add custom comment form template for your theme. (read F.A.Q.)</li>\n</ul>\";s:17:\"short_description\";s:66:\"This plugin add comments (form and list) in every NextGEN Gallery.\";}i:21;O:8:\"stdClass\":14:{s:4:\"name\";s:19:\"NextGEN - Z Cropper\";s:4:\"slug\";s:25:\"nextgen-gallery-z-cropper\";s:7:\"version\";s:4:\"0.9b\";s:6:\"author\";s:59:\"<a href=\"http://vogelundstrauss.de\">Vogel &#38; Strauss</a>\";s:14:\"author_profile\";s:45:\"http://profiles.wordpress.org/vogelundstrauss\";s:12:\"contributors\";a:1:{s:18:\"vogelundstrauss.de\";s:0:\"\";}s:8:\"requires\";s:5:\"2.8.0\";s:6:\"tested\";s:5:\"3.2.1\";s:13:\"compatibility\";a:1:{s:5:\"3.4.1\";a:1:{s:4:\"0.9b\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}}s:6:\"rating\";d:100;s:11:\"num_ratings\";i:2;s:8:\"homepage\";s:59:\"http://vogelundstrauss.de/blog/2011/08/wordpress-z-cropper/\";s:11:\"description\";s:897:\"<p>Definition: NextGEN ZCropper is a plugin that resizes and crops(!) your pictures while uploading. It will always match your selected width and height, trying to display as much as possible of the original image.\nWhy: I found several people like me requesting an instant crop functionality for NextGEN Gallery Images (not only the thumbnails). Here it is ;) Any feature requests: Go to <a href=\"http://vogelundstrauss.de/blog\" rel=\"nofollow\">http://vogelundstrauss.de/blog</a>\nRequired: This plugin requires <a href=\"http://alexrabe.de/\">Alex Rabe\'s</a> - <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\">NextGEN Gallery Plugin</a></p>\n\n<p>To report bugs/give feedback/request support, please visit the vogelundstrauss.de/blog <a href=\"http://vogelundstrauss.de/blog\">wordpress plugin support</a>.</p>\n\n<p><strong>Tested with</strong></p>\n\n<p>NextGEN Gallery 1.8.2 and WP 3.2.x</p>\";s:17:\"short_description\";s:149:\"NextGEN Z Cropper is a plugin that resizes and crops(!) your pictures while uploading them (not only thumbnails!). If the picture does not match your\";}i:22;O:8:\"stdClass\":14:{s:4:\"name\";s:35:\"Tag Suggestions for Nextgen Gallery\";s:4:\"slug\";s:35:\"tag-suggestions-for-nextgen-gallery\";s:7:\"version\";s:3:\"1.0\";s:6:\"author\";s:48:\"<a href=\"http://www.davidhill.ie\">David Hill</a>\";s:14:\"author_profile\";s:37:\"http://profiles.wordpress.org/vidhill\";s:12:\"contributors\";a:1:{s:7:\"vidhill\";s:37:\"http://profiles.wordpress.org/vidhill\";}s:8:\"requires\";s:3:\"3.0\";s:6:\"tested\";s:5:\"3.4.2\";s:13:\"compatibility\";a:1:{s:5:\"3.4.2\";a:1:{s:3:\"1.0\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}}s:6:\"rating\";d:100;s:11:\"num_ratings\";i:1;s:8:\"homepage\";s:23:\"http://www.davidhill.ie\";s:11:\"description\";s:427:\"<p>Provides add on feature for NextGen Gallery Plugin</p>\n\n<p>The plugin provides Tag suggestions (from all existing Tags) when tagging images in NextGen Gallery \'Manage Gallery\' screen, click on the suggestion to auto-complete.</p>\n\n<p>Obviously Requires NextGen Gallery to be installed:\n<a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/nextgen-gallery/</a></p>\";s:17:\"short_description\";s:100:\"The plugin provides Tag suggestions (from all existing Tags) when tagging images in NextGen Gallery.\";}i:23;O:8:\"stdClass\":14:{s:4:\"name\";s:23:\"NextGen Oqey Skins Lite\";s:4:\"slug\";s:23:\"nextgen-oqey-skins-lite\";s:7:\"version\";s:3:\"0.1\";s:6:\"author\";s:49:\"<a href=\"http://oqeysites.com/\">oqeysites.com</a>\";s:14:\"author_profile\";s:37:\"http://profiles.wordpress.org/dariimd\";s:12:\"contributors\";a:1:{s:13:\"oQeySites.com\";s:0:\"\";}s:8:\"requires\";s:5:\"3.0.0\";s:6:\"tested\";s:5:\"3.4.2\";s:13:\"compatibility\";a:1:{s:5:\"3.4.2\";a:1:{s:3:\"0.1\";a:3:{i:0;i:100;i:1;i:4;i:2;i:4;}}}s:6:\"rating\";d:100;s:11:\"num_ratings\";i:6;s:8:\"homepage\";N;s:11:\"description\";s:664:\"<p>NextGen Oqey Skins Lite is a plugin that allow to use oQey Skins on NextGen Gallery.\nIt process automatically the nextgen gallery tags, <strong>slideshow</strong> and <strong>nggallery</strong> running them with the default oQey skin. It work perfect with free and commercial oQey Skins.</p>\n\n<p>Links:</p>\n\n<ul>\n<li><a href=\"http://oqeysites.com/category/wp-photo-gallery-skins/\" title=\"Demo gallery\">Demo Gallery</a></li>\n</ul>\n\n<p>For more details, skins and examples and flash gallery, please visit <a href=\"http://oqeysites.com/\" title=\"oQeySites\">oqeysites.com</a></p>\n\n<p>Features:</p>\n\n<ul>\n<li>Allow to use the oqey skins for nextgen gallery</li>\n</ul>\";s:17:\"short_description\";s:110:\"NextGen Oqey Skins Lite is an add-on for oQey Gallery plugin that allow to use oQey Skins for NextGen gallery.\";}}}","no");
INSERT INTO wp_options VALUES("2650","_site_transient_update_plugins","O:8:\"stdClass\":2:{s:12:\"last_checked\";i:1350011744;s:8:\"response\";a:1:{s:67:\"social-networks-auto-poster-facebook-twitter-g/NextScripts_SNAP.php\";O:8:\"stdClass\":5:{s:2:\"id\";s:5:\"29712\";s:4:\"slug\";s:46:\"social-networks-auto-poster-facebook-twitter-g\";s:11:\"new_version\";s:5:\"2.2.5\";s:3:\"url\";s:83:\"http://wordpress.org/extend/plugins/social-networks-auto-poster-facebook-twitter-g/\";s:7:\"package\";s:88:\"http://downloads.wordpress.org/plugin/social-networks-auto-poster-facebook-twitter-g.zip\";}}}","yes");
INSERT INTO wp_options VALUES("2662","wpseo","a:6:{s:20:\"disableadvanced_meta\";s:2:\"on\";s:7:\"version\";s:7:\"1.2.8.6\";s:14:\"tracking_popup\";s:4:\"done\";s:14:\"yoast_tracking\";s:3:\"off\";s:11:\"theme_check\";a:1:{s:11:\"description\";b:1;}s:11:\"ignore_tour\";s:6:\"ignore\";}","yes");
INSERT INTO wp_options VALUES("2663","wpseo_titles","a:17:{s:10:\"title-home\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:12:\"title-author\";s:42:\"%%name%%, Author at %%sitename%% %%page%% \";s:13:\"title-archive\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:12:\"title-search\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:9:\"title-404\";s:35:\"Page Not Found %%sep%% %%sitename%%\";s:15:\"noindex-archive\";s:2:\"on\";s:19:\"noindex-post_format\";s:2:\"on\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"title-portfolios\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"title-gallery\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:14:\"title-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:14:\"title-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:17:\"title-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:13:\"title-ngg_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:19:\"title-portfoliosets\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";}","yes");
INSERT INTO wp_options VALUES("2664","wpseo_xml","a:4:{s:36:\"post_types-portfolios-not_in_sitemap\";s:2:\"on\";s:34:\"taxonomies-post_tag-not_in_sitemap\";s:2:\"on\";s:33:\"taxonomies-ngg_tag-not_in_sitemap\";s:2:\"on\";s:39:\"taxonomies-portfoliosets-not_in_sitemap\";s:2:\"on\";}","yes");
INSERT INTO wp_options VALUES("2665","wpseo_social","a:1:{s:9:\"opengraph\";s:2:\"on\";}","yes");
INSERT INTO wp_options VALUES("2666","wpseo_rss","a:1:{s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";}","yes");
INSERT INTO wp_options VALUES("2671","rewrite_rules","a:93:{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:48:\"ngg_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?ngg_tag=$matches[1]&feed=$matches[2]\";s:43:\"ngg_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?ngg_tag=$matches[1]&feed=$matches[2]\";s:36:\"ngg_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?ngg_tag=$matches[1]&paged=$matches[2]\";s:18:\"ngg_tag/([^/]+)/?$\";s:29:\"index.php?ngg_tag=$matches[1]\";s:38:\"portfolios/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"portfolios/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"portfolios/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"portfolios/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"portfolios/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"portfolios/([^/]+)/trackback/?$\";s:37:\"index.php?portfolios=$matches[1]&tb=1\";s:51:\"portfolios/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?portfolios=$matches[1]&feed=$matches[2]\";s:46:\"portfolios/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?portfolios=$matches[1]&feed=$matches[2]\";s:39:\"portfolios/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?portfolios=$matches[1]&paged=$matches[2]\";s:46:\"portfolios/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?portfolios=$matches[1]&cpage=$matches[2]\";s:31:\"portfolios/([^/]+)(/[0-9]+)?/?$\";s:49:\"index.php?portfolios=$matches[1]&page=$matches[2]\";s:27:\"portfolios/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"portfolios/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"portfolios/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"portfolios/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"portfolios/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:54:\"portfoliosets/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfoliosets=$matches[1]&feed=$matches[2]\";s:49:\"portfoliosets/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfoliosets=$matches[1]&feed=$matches[2]\";s:42:\"portfoliosets/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?portfoliosets=$matches[1]&paged=$matches[2]\";s:24:\"portfoliosets/([^/]+)/?$\";s:35:\"index.php?portfoliosets=$matches[1]\";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: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:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:27:\"comment-page-([0-9]{1,})/?$\";s:41:\"index.php?&page_id=1035&cpage=$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");
INSERT INTO wp_options VALUES("2673","sm_status","O:28:\"GoogleSitemapGeneratorStatus\":24:{s:10:\"_startTime\";d:1350206828.407658100128173828125;s:8:\"_endTime\";d:1350206828.715013027191162109375;s:11:\"_hasChanged\";b:1;s:12:\"_memoryUsage\";i:29884416;s:9:\"_lastPost\";i:30;s:9:\"_lastTime\";d:1350206828.457274913787841796875;s:8:\"_usedXml\";b:1;s:11:\"_xmlSuccess\";b:1;s:8:\"_xmlPath\";s:68:\"/home/livingim/public_html/livingimagephotography.com.au/sitemap.xml\";s:7:\"_xmlUrl\";s:52:\"http://www.livingimagephotography.com.au/sitemap.xml\";s:8:\"_usedZip\";b:1;s:11:\"_zipSuccess\";b:1;s:8:\"_zipPath\";s:71:\"/home/livingim/public_html/livingimagephotography.com.au/sitemap.xml.gz\";s:7:\"_zipUrl\";s:55:\"http://www.livingimagephotography.com.au/sitemap.xml.gz\";s:11:\"_usedGoogle\";b:1;s:10:\"_googleUrl\";s:118:\"http://www.google.com/webmasters/sitemaps/ping?sitemap=http%3A%2F%2Fwww.livingimagephotography.com.au%2Fsitemap.xml.gz\";s:15:\"_gooogleSuccess\";b:1;s:16:\"_googleStartTime\";d:1350206828.4603710174560546875;s:14:\"_googleEndTime\";d:1350206828.574346065521240234375;s:8:\"_usedMsn\";b:1;s:7:\"_msnUrl\";s:111:\"http://www.bing.com/webmaster/ping.aspx?siteMap=http%3A%2F%2Fwww.livingimagephotography.com.au%2Fsitemap.xml.gz\";s:11:\"_msnSuccess\";b:1;s:13:\"_msnStartTime\";d:1350206828.57544994354248046875;s:11:\"_msnEndTime\";d:1350206828.7140510082244873046875;}","no");

DROP TABLE IF EXISTS `wp_postmeta`;

CREATE TABLE `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 AUTO_INCREMENT=2557 DEFAULT CHARSET=utf8;

INSERT INTO wp_postmeta VALUES("2318","897","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2319","897","_wp_trash_meta_time","1349748065");
INSERT INTO wp_postmeta VALUES("6","6","_edit_last","1");
INSERT INTO wp_postmeta VALUES("7","6","_wp_page_template","page_f.php");
INSERT INTO wp_postmeta VALUES("8","6","_edit_lock","1349921000:1");
INSERT INTO wp_postmeta VALUES("9","8","_edit_last","1");
INSERT INTO wp_postmeta VALUES("10","8","_edit_lock","1347079275:1");
INSERT INTO wp_postmeta VALUES("11","8","_wp_page_template","default");
INSERT INTO wp_postmeta VALUES("12","10","_edit_last","1");
INSERT INTO wp_postmeta VALUES("13","10","_edit_lock","1347079304:1");
INSERT INTO wp_postmeta VALUES("14","10","_wp_page_template","default");
INSERT INTO wp_postmeta VALUES("15","12","_edit_last","1");
INSERT INTO wp_postmeta VALUES("16","12","_edit_lock","1349921032:1");
INSERT INTO wp_postmeta VALUES("20","15","_edit_last","1");
INSERT INTO wp_postmeta VALUES("19","12","_wp_page_template","default");
INSERT INTO wp_postmeta VALUES("21","15","_wp_page_template","page_f.php");
INSERT INTO wp_postmeta VALUES("22","15","_edit_lock","1349920914:1");
INSERT INTO wp_postmeta VALUES("23","18","_edit_last","1");
INSERT INTO wp_postmeta VALUES("24","18","_edit_lock","1349920938:1");
INSERT INTO wp_postmeta VALUES("25","18","_wp_page_template","page_f.php");
INSERT INTO wp_postmeta VALUES("26","20","_edit_last","1");
INSERT INTO wp_postmeta VALUES("27","20","_edit_lock","1349920629:1");
INSERT INTO wp_postmeta VALUES("28","20","_wp_page_template","page_f.php");
INSERT INTO wp_postmeta VALUES("29","22","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("30","22","_menu_item_menu_item_parent","0");
INSERT INTO wp_postmeta VALUES("31","22","_menu_item_object_id","20");
INSERT INTO wp_postmeta VALUES("32","22","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("33","22","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("34","22","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("35","22","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("36","22","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("92","6","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("38","23","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("39","23","_menu_item_menu_item_parent","0");
INSERT INTO wp_postmeta VALUES("40","23","_menu_item_object_id","18");
INSERT INTO wp_postmeta VALUES("41","23","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("42","23","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("43","23","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("44","23","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("45","23","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("47","24","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("48","24","_menu_item_menu_item_parent","0");
INSERT INTO wp_postmeta VALUES("49","24","_menu_item_object_id","15");
INSERT INTO wp_postmeta VALUES("50","24","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("51","24","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("52","24","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("53","24","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("54","24","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("96","32","_edit_last","1");
INSERT INTO wp_postmeta VALUES("56","25","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("57","25","_menu_item_menu_item_parent","0");
INSERT INTO wp_postmeta VALUES("58","25","_menu_item_object_id","12");
INSERT INTO wp_postmeta VALUES("59","25","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("60","25","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("61","25","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("62","25","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("63","25","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("97","32","_edit_lock","1349756995:1");
INSERT INTO wp_postmeta VALUES("65","26","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("66","26","_menu_item_menu_item_parent","0");
INSERT INTO wp_postmeta VALUES("67","26","_menu_item_object_id","10");
INSERT INTO wp_postmeta VALUES("68","26","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("69","26","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("70","26","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("71","26","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("72","26","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("98","32","_gallery_type","");
INSERT INTO wp_postmeta VALUES("74","27","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("75","27","_menu_item_menu_item_parent","0");
INSERT INTO wp_postmeta VALUES("76","27","_menu_item_object_id","8");
INSERT INTO wp_postmeta VALUES("77","27","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("78","27","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("79","27","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("80","27","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("81","27","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("83","28","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("84","28","_menu_item_menu_item_parent","0");
INSERT INTO wp_postmeta VALUES("85","28","_menu_item_object_id","6");
INSERT INTO wp_postmeta VALUES("86","28","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("87","28","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("88","28","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("89","28","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("90","28","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("119","52","_wp_attached_file","2012/09/LivingBackground.jpg");
INSERT INTO wp_postmeta VALUES("945","463","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1815","775","_edit_last","1");
INSERT INTO wp_postmeta VALUES("120","52","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:3:\"900\";s:14:\"hwstring_small\";s:23:\"height=\'80\' width=\'128\'\";s:4:\"file\";s:28:\"2012/09/LivingBackground.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:28:\"LivingBackground-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:28:\"LivingBackground-300x187.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"187\";}s:5:\"large\";a:3:{s:4:\"file\";s:29:\"LivingBackground-1024x640.jpg\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"640\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:28:\"LivingBackground-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:28:\"LivingBackground-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:28:\"LivingBackground-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:28:\"LivingBackground-635x396.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"396\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:28:\"LivingBackground-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:28:\"LivingBackground-410x256.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"256\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1816","775","_gallery_type","");
INSERT INTO wp_postmeta VALUES("125","6","page_sidebar","Page Sidebar");
INSERT INTO wp_postmeta VALUES("126","59","_edit_last","1");
INSERT INTO wp_postmeta VALUES("127","59","_edit_lock","1347947643:1");
INSERT INTO wp_postmeta VALUES("129","59","page_bg_style","Static Image");
INSERT INTO wp_postmeta VALUES("130","59","page_sidebar","Page Sidebar");
INSERT INTO wp_postmeta VALUES("131","59","_wp_page_template","page_r.php");
INSERT INTO wp_postmeta VALUES("135","69","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1075\";s:6:\"height\";s:3:\"650\";s:14:\"hwstring_small\";s:23:\"height=\'77\' width=\'128\'\";s:4:\"file\";s:16:\"2012/09/logo.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:16:\"logo-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:16:\"logo-300x181.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"181\";}s:5:\"large\";a:3:{s:4:\"file\";s:17:\"logo-1024x619.png\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"619\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:16:\"logo-320x230.png\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:16:\"logo-190x134.png\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:16:\"logo-144x108.png\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:16:\"logo-635x383.png\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"383\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:16:\"logo-455x300.png\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:16:\"logo-410x247.png\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"247\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("134","69","_wp_attached_file","2012/09/logo.png");
INSERT INTO wp_postmeta VALUES("136","70","_wp_attached_file","2012/09/logocomingsoon.png");
INSERT INTO wp_postmeta VALUES("137","70","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1075\";s:6:\"height\";s:3:\"650\";s:14:\"hwstring_small\";s:23:\"height=\'77\' width=\'128\'\";s:4:\"file\";s:26:\"2012/09/logocomingsoon.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:26:\"logocomingsoon-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:26:\"logocomingsoon-300x181.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"181\";}s:5:\"large\";a:3:{s:4:\"file\";s:27:\"logocomingsoon-1024x619.png\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"619\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:26:\"logocomingsoon-320x230.png\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:26:\"logocomingsoon-190x134.png\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:26:\"logocomingsoon-144x108.png\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:26:\"logocomingsoon-635x383.png\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"383\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:26:\"logocomingsoon-455x300.png\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:26:\"logocomingsoon-410x247.png\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"247\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("138","71","_edit_last","1");
INSERT INTO wp_postmeta VALUES("139","71","_edit_lock","1348126521:1");
INSERT INTO wp_postmeta VALUES("2166","75","_wp_trash_meta_time","1348712814");
INSERT INTO wp_postmeta VALUES("141","71","_wp_page_template","template-gallery-4.php");
INSERT INTO wp_postmeta VALUES("142","73","_edit_last","1");
INSERT INTO wp_postmeta VALUES("143","73","_edit_lock","1348214407:1");
INSERT INTO wp_postmeta VALUES("145","75","_edit_last","1");
INSERT INTO wp_postmeta VALUES("146","75","_edit_lock","1348215475:1");
INSERT INTO wp_postmeta VALUES("2169","984","_edit_last","1");
INSERT INTO wp_postmeta VALUES("2171","984","snapEdIT","1");
INSERT INTO wp_postmeta VALUES("149","75","_wp_page_template","template-gallery-4.php");
INSERT INTO wp_postmeta VALUES("150","77","_edit_last","1");
INSERT INTO wp_postmeta VALUES("151","77","_edit_lock","1349920813:1");
INSERT INTO wp_postmeta VALUES("153","77","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("154","77","_wp_page_template","template-gallery-flip.php");
INSERT INTO wp_postmeta VALUES("155","79","_edit_last","1");
INSERT INTO wp_postmeta VALUES("156","79","_edit_lock","1349920832:1");
INSERT INTO wp_postmeta VALUES("158","79","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("159","79","_wp_page_template","template-gallery-flip.php");
INSERT INTO wp_postmeta VALUES("160","81","_edit_last","1");
INSERT INTO wp_postmeta VALUES("161","81","_edit_lock","1349920845:1");
INSERT INTO wp_postmeta VALUES("163","81","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("164","81","_wp_page_template","template-gallery-flip.php");
INSERT INTO wp_postmeta VALUES("165","83","_edit_last","1");
INSERT INTO wp_postmeta VALUES("166","83","_edit_lock","1349920871:1");
INSERT INTO wp_postmeta VALUES("168","83","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("169","83","_wp_page_template","template-gallery-flip.php");
INSERT INTO wp_postmeta VALUES("170","85","_edit_last","1");
INSERT INTO wp_postmeta VALUES("171","85","_edit_lock","1349920873:1");
INSERT INTO wp_postmeta VALUES("1842","85","page_bg_gallery_id","1101");
INSERT INTO wp_postmeta VALUES("173","85","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("174","85","_wp_page_template","template-gallery-flip.php");
INSERT INTO wp_postmeta VALUES("175","87","_edit_last","1");
INSERT INTO wp_postmeta VALUES("176","87","_edit_lock","1349920877:1");
INSERT INTO wp_postmeta VALUES("178","87","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("179","87","_wp_page_template","template-gallery-flip.php");
INSERT INTO wp_postmeta VALUES("180","89","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("181","89","_menu_item_menu_item_parent","27");
INSERT INTO wp_postmeta VALUES("182","89","_menu_item_object_id","87");
INSERT INTO wp_postmeta VALUES("183","89","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("184","89","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("185","89","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("186","89","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("187","89","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("252","97","_edit_last","1");
INSERT INTO wp_postmeta VALUES("189","90","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("190","90","_menu_item_menu_item_parent","27");
INSERT INTO wp_postmeta VALUES("191","90","_menu_item_object_id","85");
INSERT INTO wp_postmeta VALUES("192","90","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("193","90","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("194","90","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("195","90","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("196","90","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("253","97","_edit_lock","1347504107:1");
INSERT INTO wp_postmeta VALUES("198","91","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("199","91","_menu_item_menu_item_parent","27");
INSERT INTO wp_postmeta VALUES("200","91","_menu_item_object_id","83");
INSERT INTO wp_postmeta VALUES("201","91","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("202","91","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("203","91","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("204","91","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("205","91","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("254","97","_gallery_type","");
INSERT INTO wp_postmeta VALUES("207","92","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("208","92","_menu_item_menu_item_parent","27");
INSERT INTO wp_postmeta VALUES("209","92","_menu_item_object_id","81");
INSERT INTO wp_postmeta VALUES("210","92","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("211","92","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("212","92","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("213","92","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("214","92","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("216","93","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("217","93","_menu_item_menu_item_parent","27");
INSERT INTO wp_postmeta VALUES("218","93","_menu_item_object_id","79");
INSERT INTO wp_postmeta VALUES("219","93","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("220","93","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("221","93","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("222","93","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("223","93","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("225","94","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("226","94","_menu_item_menu_item_parent","27");
INSERT INTO wp_postmeta VALUES("227","94","_menu_item_object_id","77");
INSERT INTO wp_postmeta VALUES("228","94","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("229","94","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("230","94","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("231","94","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("232","94","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("2165","75","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("303","124","_edit_last","1");
INSERT INTO wp_postmeta VALUES("304","124","_gallery_type","");
INSERT INTO wp_postmeta VALUES("305","124","_edit_lock","1348710909:1");
INSERT INTO wp_postmeta VALUES("306","125","_wp_attached_file","2012/09/ChildrensPhotographer094.jpg");
INSERT INTO wp_postmeta VALUES("307","125","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer094.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer094-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer094-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer094-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer094-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer094-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer094-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer094-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer094-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1247564560\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"125\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("308","126","_wp_attached_file","2012/09/ChildrensPhotographer095.jpg");
INSERT INTO wp_postmeta VALUES("309","126","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer095.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer095-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer095-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer095-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer095-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer095-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer095-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer095-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer095-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("310","127","_wp_attached_file","2012/09/ChildrensPhotographer096.jpg");
INSERT INTO wp_postmeta VALUES("311","127","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer096.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer096-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer096-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer096-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer096-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer096-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer096-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer096-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer096-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1247566631\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("314","130","_wp_attached_file","2012/09/ChildrensPhotographer098.jpg");
INSERT INTO wp_postmeta VALUES("315","130","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer098.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer098-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer098-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer098-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer098-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer098-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer098-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer098-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer098-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1247567120\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("316","131","_wp_attached_file","2012/09/ChildrensPhotographer099.jpg");
INSERT INTO wp_postmeta VALUES("317","131","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer099.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer099-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer099-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer099-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer099-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer099-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer099-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer099-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer099-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1247567296\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("328","137","_wp_attached_file","2012/09/ChildrensPhotographer105.jpg");
INSERT INTO wp_postmeta VALUES("329","137","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"532\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'63\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer105.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer105-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer105-199x300.jpg\";s:5:\"width\";s:3:\"199\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer105-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer105-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer105-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer105-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer105-410x616.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"616\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1234653266\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("332","139","_wp_attached_file","2012/09/ChildrensPhotographer107.jpg");
INSERT INTO wp_postmeta VALUES("333","139","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"532\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'63\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer107.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer107-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer107-199x300.jpg\";s:5:\"width\";s:3:\"199\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer107-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer107-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer107-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer107-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer107-410x616.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"616\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1235289607\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"160\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("344","147","_wp_attached_file","2012/09/ChildrensPhotographer113.jpg");
INSERT INTO wp_postmeta VALUES("345","147","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer113.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer113-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer113-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer113-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer113-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer113-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer113-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer113-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer113-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("348","149","_wp_attached_file","2012/09/ChildrensPhotographer115.jpg");
INSERT INTO wp_postmeta VALUES("349","149","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"532\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'63\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer115.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer115-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer115-199x300.jpg\";s:5:\"width\";s:3:\"199\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer115-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer115-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer115-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer115-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer115-410x616.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"616\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1238131101\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("352","151","_wp_attached_file","2012/09/ChildrensPhotographer117.jpg");
INSERT INTO wp_postmeta VALUES("353","151","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer117.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer117-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer117-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer117-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer117-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer117-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer117-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer117-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer117-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("354","153","_wp_attached_file","2012/09/ChildrensPhotographer118.jpg");
INSERT INTO wp_postmeta VALUES("355","153","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer118.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer118-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer118-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer118-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer118-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer118-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer118-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer118-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer118-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("356","154","_wp_attached_file","2012/09/ChildrensPhotographer119.jpg");
INSERT INTO wp_postmeta VALUES("357","154","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer119.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer119-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer119-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer119-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer119-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer119-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer119-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer119-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer119-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("360","156","_wp_attached_file","2012/09/ChildrensPhotographer001.jpg");
INSERT INTO wp_postmeta VALUES("361","156","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer001.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer001-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer001-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer001-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer001-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer001-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer001-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer001-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer001-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("364","158","_wp_attached_file","2012/09/ChildrensPhotographer003.jpg");
INSERT INTO wp_postmeta VALUES("365","158","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer003.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer003-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer003-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer003-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer003-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer003-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer003-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer003-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer003-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("366","159","_wp_attached_file","2012/09/ChildrensPhotographer004.jpg");
INSERT INTO wp_postmeta VALUES("367","159","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer004.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer004-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer004-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer004-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer004-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer004-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer004-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer004-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer004-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("368","160","_wp_attached_file","2012/09/ChildrensPhotographer005.jpg");
INSERT INTO wp_postmeta VALUES("369","160","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer005.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer005-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer005-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer005-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer005-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer005-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer005-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer005-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer005-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("370","161","_wp_attached_file","2012/09/ChildrensPhotographer006.jpg");
INSERT INTO wp_postmeta VALUES("371","161","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer006.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer006-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer006-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer006-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer006-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer006-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer006-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer006-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer006-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("372","163","_wp_attached_file","2012/09/ChildrensPhotographer007.jpg");
INSERT INTO wp_postmeta VALUES("373","163","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer007.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer007-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer007-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer007-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer007-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer007-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer007-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer007-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer007-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("374","164","_wp_attached_file","2012/09/ChildrensPhotographer008.jpg");
INSERT INTO wp_postmeta VALUES("375","164","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer008.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer008-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer008-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer008-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer008-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer008-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer008-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer008-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer008-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("376","165","_wp_attached_file","2012/09/ChildrensPhotographer009.jpg");
INSERT INTO wp_postmeta VALUES("377","165","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer009.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer009-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer009-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer009-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer009-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer009-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer009-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer009-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer009-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("380","168","_wp_attached_file","2012/09/ChildrensPhotographer011.jpg");
INSERT INTO wp_postmeta VALUES("381","168","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer011.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer011-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer011-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer011-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer011-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer011-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer011-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer011-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer011-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("382","169","_wp_attached_file","2012/09/ChildrensPhotographer012.jpg");
INSERT INTO wp_postmeta VALUES("383","169","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer012.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer012-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer012-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer012-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer012-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer012-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer012-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer012-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer012-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("386","172","_wp_attached_file","2012/09/ChildrensPhotographer014.jpg");
INSERT INTO wp_postmeta VALUES("387","172","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer014.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer014-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer014-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer014-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer014-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer014-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer014-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer014-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer014-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("388","173","_wp_attached_file","2012/09/ChildrensPhotographer015.jpg");
INSERT INTO wp_postmeta VALUES("389","173","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer015.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer015-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer015-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer015-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer015-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer015-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer015-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer015-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer015-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("394","176","_wp_attached_file","2012/09/ChildrensPhotographer018.jpg");
INSERT INTO wp_postmeta VALUES("395","176","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer018.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer018-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer018-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer018-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer018-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer018-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer018-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer018-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer018-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("396","177","_wp_attached_file","2012/09/ChildrensPhotographer019.jpg");
INSERT INTO wp_postmeta VALUES("397","177","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer019.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer019-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer019-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer019-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer019-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer019-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer019-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer019-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer019-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("402","181","_wp_attached_file","2012/09/ChildrensPhotographer022.jpg");
INSERT INTO wp_postmeta VALUES("403","181","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer022.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer022-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer022-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer022-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer022-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer022-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer022-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer022-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer022-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("404","183","_wp_attached_file","2012/09/ChildrensPhotographer023.jpg");
INSERT INTO wp_postmeta VALUES("405","183","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer023.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer023-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer023-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer023-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer023-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer023-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer023-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer023-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer023-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("406","184","_wp_attached_file","2012/09/ChildrensPhotographer024.jpg");
INSERT INTO wp_postmeta VALUES("407","184","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer024.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer024-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer024-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer024-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer024-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer024-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer024-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer024-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer024-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("414","188","_wp_attached_file","2012/09/ChildrensPhotographer028.jpg");
INSERT INTO wp_postmeta VALUES("415","188","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer028.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer028-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer028-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer028-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer028-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer028-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer028-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer028-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer028-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("416","189","_wp_attached_file","2012/09/ChildrensPhotographer029.jpg");
INSERT INTO wp_postmeta VALUES("417","189","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer029.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer029-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer029-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer029-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer029-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer029-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer029-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer029-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer029-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("420","192","_wp_attached_file","2012/09/ChildrensPhotographer031.jpg");
INSERT INTO wp_postmeta VALUES("421","192","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer031.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer031-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer031-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer031-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer031-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer031-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer031-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer031-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer031-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("422","193","_wp_attached_file","2012/09/ChildrensPhotographer032.jpg");
INSERT INTO wp_postmeta VALUES("423","193","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer032.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer032-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer032-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer032-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer032-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer032-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer032-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer032-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer032-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("426","196","_wp_attached_file","2012/09/ChildrensPhotographer034.jpg");
INSERT INTO wp_postmeta VALUES("427","196","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer034.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer034-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer034-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer034-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer034-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer034-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer034-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer034-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer034-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("428","197","_wp_attached_file","2012/09/ChildrensPhotographer035.jpg");
INSERT INTO wp_postmeta VALUES("429","197","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer035.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer035-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer035-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer035-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer035-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer035-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer035-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer035-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer035-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("430","198","_wp_attached_file","2012/09/ChildrensPhotographer036.jpg");
INSERT INTO wp_postmeta VALUES("431","198","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer036.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer036-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer036-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer036-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer036-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer036-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer036-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer036-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer036-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("432","199","_wp_attached_file","2012/09/ChildrensPhotographer037.jpg");
INSERT INTO wp_postmeta VALUES("433","199","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer037.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer037-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer037-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer037-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer037-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer037-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer037-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer037-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer037-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("434","200","_wp_attached_file","2012/09/ChildrensPhotographer038.jpg");
INSERT INTO wp_postmeta VALUES("435","200","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer038.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer038-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer038-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer038-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer038-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer038-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer038-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer038-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer038-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("436","201","_wp_attached_file","2012/09/ChildrensPhotographer039.jpg");
INSERT INTO wp_postmeta VALUES("437","201","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer039.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer039-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer039-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer039-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer039-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer039-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer039-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer039-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer039-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("438","202","_wp_attached_file","2012/09/ChildrensPhotographer040.jpg");
INSERT INTO wp_postmeta VALUES("439","202","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer040.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer040-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer040-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer040-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer040-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer040-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer040-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer040-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer040-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("440","203","_wp_attached_file","2012/09/ChildrensPhotographer041.jpg");
INSERT INTO wp_postmeta VALUES("441","203","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer041.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer041-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer041-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer041-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer041-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer041-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer041-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer041-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer041-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("444","205","_wp_attached_file","2012/09/ChildrensPhotographer043.jpg");
INSERT INTO wp_postmeta VALUES("445","205","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer043.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer043-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer043-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer043-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer043-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer043-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer043-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer043-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer043-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("448","207","_wp_attached_file","2012/09/ChildrensPhotographer045.jpg");
INSERT INTO wp_postmeta VALUES("449","207","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer045.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer045-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer045-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer045-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer045-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer045-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer045-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer045-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer045-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("450","208","_wp_attached_file","2012/09/ChildrensPhotographer046.jpg");
INSERT INTO wp_postmeta VALUES("451","208","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer046.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer046-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer046-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer046-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer046-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer046-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer046-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer046-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer046-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("454","210","_wp_attached_file","2012/09/ChildrensPhotographer048.jpg");
INSERT INTO wp_postmeta VALUES("455","210","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer048.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer048-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer048-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer048-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer048-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer048-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer048-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer048-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer048-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("458","212","_wp_attached_file","2012/09/ChildrensPhotographer050.jpg");
INSERT INTO wp_postmeta VALUES("459","212","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer050.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer050-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer050-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer050-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer050-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer050-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer050-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer050-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer050-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("460","213","_wp_attached_file","2012/09/ChildrensPhotographer051.jpg");
INSERT INTO wp_postmeta VALUES("461","213","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"798\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer051.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer051-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer051-300x199.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"199\";}s:5:\"large\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer051-1024x680.jpg\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"680\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer051-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer051-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer051-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer051-635x422.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"422\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer051-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer051-410x272.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"272\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("462","214","_wp_attached_file","2012/09/ChildrensPhotographer052.jpg");
INSERT INTO wp_postmeta VALUES("463","214","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer052.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer052-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer052-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer052-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer052-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer052-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer052-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer052-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer052-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("466","216","_wp_attached_file","2012/09/ChildrensPhotographer054.jpg");
INSERT INTO wp_postmeta VALUES("467","216","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer054.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer054-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer054-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer054-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer054-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer054-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer054-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer054-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer054-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("478","222","_wp_attached_file","2012/09/ChildrensPhotographer060.jpg");
INSERT INTO wp_postmeta VALUES("479","222","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer060.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer060-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer060-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer060-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer060-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer060-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer060-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer060-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer060-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("480","223","_wp_attached_file","2012/09/ChildrensPhotographer061.jpg");
INSERT INTO wp_postmeta VALUES("481","223","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"575\";s:14:\"hwstring_small\";s:23:\"height=\'61\' width=\'128\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer061.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer061-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer061-300x143.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"143\";}s:5:\"large\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer061-1024x490.jpg\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"490\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer061-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer061-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer061-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer061-635x304.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"304\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer061-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer061-410x196.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"196\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("482","224","_wp_attached_file","2012/09/ChildrensPhotographer062.jpg");
INSERT INTO wp_postmeta VALUES("483","224","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer062.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer062-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer062-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer062-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer062-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer062-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer062-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer062-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer062-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("484","225","_wp_attached_file","2012/09/ChildrensPhotographer063.jpg");
INSERT INTO wp_postmeta VALUES("485","225","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"798\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer063.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer063-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer063-300x199.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"199\";}s:5:\"large\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer063-1024x680.jpg\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"680\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer063-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer063-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer063-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer063-635x422.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"422\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer063-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer063-410x272.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"272\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("490","228","_wp_attached_file","2012/09/ChildrensPhotographer066.jpg");
INSERT INTO wp_postmeta VALUES("491","228","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer066.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer066-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer066-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer066-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer066-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer066-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer066-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer066-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer066-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("492","229","_wp_attached_file","2012/09/ChildrensPhotographer067.jpg");
INSERT INTO wp_postmeta VALUES("493","229","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer067.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer067-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer067-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer067-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer067-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer067-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer067-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer067-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer067-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("494","230","_wp_attached_file","2012/09/ChildrensPhotographer068.jpg");
INSERT INTO wp_postmeta VALUES("495","230","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer068.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer068-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer068-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer068-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer068-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer068-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer068-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer068-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer068-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("496","231","_wp_attached_file","2012/09/ChildrensPhotographer069.jpg");
INSERT INTO wp_postmeta VALUES("497","231","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer069.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer069-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer069-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer069-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer069-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer069-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer069-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer069-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer069-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("498","232","_wp_attached_file","2012/09/ChildrensPhotographer070.jpg");
INSERT INTO wp_postmeta VALUES("499","232","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer070.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer070-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer070-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer070-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer070-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer070-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer070-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer070-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer070-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("500","233","_wp_attached_file","2012/09/ChildrensPhotographer071.jpg");
INSERT INTO wp_postmeta VALUES("501","233","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer071.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer071-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer071-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer071-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer071-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer071-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer071-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer071-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer071-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("504","235","_wp_attached_file","2012/09/ChildrensPhotographer073.jpg");
INSERT INTO wp_postmeta VALUES("505","235","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer073.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer073-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer073-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer073-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer073-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer073-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer073-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer073-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer073-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("506","236","_wp_attached_file","2012/09/ChildrensPhotographer074.jpg");
INSERT INTO wp_postmeta VALUES("507","236","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer074.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer074-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer074-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer074-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer074-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer074-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer074-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer074-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer074-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("508","237","_wp_attached_file","2012/09/ChildrensPhotographer075.jpg");
INSERT INTO wp_postmeta VALUES("509","237","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer075.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer075-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer075-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer075-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer075-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer075-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer075-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer075-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer075-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("510","238","_wp_attached_file","2012/09/ChildrensPhotographer076.jpg");
INSERT INTO wp_postmeta VALUES("511","238","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer076.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer076-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer076-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer076-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer076-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer076-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer076-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer076-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer076-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("512","239","_wp_attached_file","2012/09/ChildrensPhotographer077.jpg");
INSERT INTO wp_postmeta VALUES("513","239","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer077.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer077-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer077-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer077-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer077-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer077-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer077-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer077-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer077-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("516","241","_wp_attached_file","2012/09/ChildrensPhotographer079.jpg");
INSERT INTO wp_postmeta VALUES("517","241","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer079.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer079-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer079-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer079-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer079-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer079-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer079-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer079-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer079-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("518","242","_wp_attached_file","2012/09/ChildrensPhotographer080.jpg");
INSERT INTO wp_postmeta VALUES("519","242","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer080.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer080-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer080-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer080-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer080-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer080-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer080-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer080-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer080-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("520","243","_wp_attached_file","2012/09/ChildrensPhotographer081.jpg");
INSERT INTO wp_postmeta VALUES("521","243","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer081.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer081-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer081-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer081-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer081-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer081-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer081-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer081-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer081-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("526","246","_wp_attached_file","2012/09/ChildrensPhotographer084.jpg");
INSERT INTO wp_postmeta VALUES("527","246","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer084.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer084-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer084-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer084-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer084-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer084-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer084-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer084-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer084-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("534","250","_wp_attached_file","2012/09/ChildrensPhotographer088.jpg");
INSERT INTO wp_postmeta VALUES("535","250","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"532\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'63\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer088.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer088-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer088-199x300.jpg\";s:5:\"width\";s:3:\"199\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer088-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer088-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer088-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer088-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer088-410x616.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"616\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1270763874\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("538","252","_wp_attached_file","2012/09/ChildrensPhotographer090.jpg");
INSERT INTO wp_postmeta VALUES("539","252","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:36:\"2012/09/ChildrensPhotographer090.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer090-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer090-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer090-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer090-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer090-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer090-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer090-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"ChildrensPhotographer090-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2173","984","_edit_lock","1348790064:1");
INSERT INTO wp_postmeta VALUES("548","260","_edit_last","1");
INSERT INTO wp_postmeta VALUES("549","260","_edit_lock","1347517956:1");
INSERT INTO wp_postmeta VALUES("550","260","_gallery_type","");
INSERT INTO wp_postmeta VALUES("579","77","page_gallery_id","1128");
INSERT INTO wp_postmeta VALUES("581","280","_edit_last","1");
INSERT INTO wp_postmeta VALUES("582","280","_gallery_type","");
INSERT INTO wp_postmeta VALUES("583","280","_edit_lock","1348790646:1");
INSERT INTO wp_postmeta VALUES("590","285","_wp_attached_file","2012/09/CouplesPortraits003.jpg");
INSERT INTO wp_postmeta VALUES("591","285","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:31:\"2012/09/CouplesPortraits003.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits003-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits003-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits003-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits003-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits003-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits003-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits003-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits003-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("594","287","_wp_attached_file","2012/09/CouplesPortraits005.jpg");
INSERT INTO wp_postmeta VALUES("595","287","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:31:\"2012/09/CouplesPortraits005.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits005-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits005-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits005-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits005-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits005-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits005-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits005-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits005-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1240333968\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"105\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("600","290","_wp_attached_file","2012/09/CouplesPortraits008.jpg");
INSERT INTO wp_postmeta VALUES("601","290","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:31:\"2012/09/CouplesPortraits008.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits008-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits008-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits008-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits008-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits008-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits008-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits008-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits008-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1240336400\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"145\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("602","291","_wp_attached_file","2012/09/CouplesPortraits009.jpg");
INSERT INTO wp_postmeta VALUES("603","291","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:31:\"2012/09/CouplesPortraits009.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits009-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits009-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits009-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits009-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits009-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits009-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits009-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits009-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("608","294","_wp_attached_file","2012/09/CouplesPortraits012.jpg");
INSERT INTO wp_postmeta VALUES("609","294","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:31:\"2012/09/CouplesPortraits012.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits012-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits012-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits012-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits012-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits012-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits012-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits012-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits012-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("610","295","_wp_attached_file","2012/09/CouplesPortraits013.jpg");
INSERT INTO wp_postmeta VALUES("611","295","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:31:\"2012/09/CouplesPortraits013.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits013-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits013-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits013-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits013-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits013-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits013-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits013-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits013-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("614","297","_wp_attached_file","2012/09/CouplesPortraits015.jpg");
INSERT INTO wp_postmeta VALUES("615","297","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:31:\"2012/09/CouplesPortraits015.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits015-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits015-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits015-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits015-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits015-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits015-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits015-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits015-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("622","301","_wp_attached_file","2012/09/CouplesPortraits019.jpg");
INSERT INTO wp_postmeta VALUES("623","301","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:31:\"2012/09/CouplesPortraits019.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits019-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits019-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits019-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits019-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits019-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits019-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits019-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:31:\"CouplesPortraits019-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("636","79","page_gallery_id","1079");
INSERT INTO wp_postmeta VALUES("710","345","_edit_last","1");
INSERT INTO wp_postmeta VALUES("711","345","_edit_lock","1349399155:1");
INSERT INTO wp_postmeta VALUES("712","345","_gallery_type","");
INSERT INTO wp_postmeta VALUES("713","346","_wp_attached_file","2012/09/FamilyPortraitPhotographer091.jpg");
INSERT INTO wp_postmeta VALUES("714","346","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer091.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer091-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer091-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer091-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer091-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer091-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer091-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer091-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer091-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("715","347","_wp_attached_file","2012/09/FamilyPortraitPhotographer092.jpg");
INSERT INTO wp_postmeta VALUES("716","347","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer092.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer092-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer092-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer092-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer092-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer092-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer092-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer092-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer092-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("719","349","_wp_attached_file","2012/09/FamilyPortraitPhotographer094.jpg");
INSERT INTO wp_postmeta VALUES("720","349","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer094.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer094-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer094-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer094-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer094-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer094-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer094-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer094-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer094-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("721","350","_wp_attached_file","2012/09/familyportrait-swing.jpg");
INSERT INTO wp_postmeta VALUES("722","350","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"480\";s:6:\"height\";s:3:\"600\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:32:\"2012/09/familyportrait-swing.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:32:\"familyportrait-swing-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:32:\"familyportrait-swing-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:32:\"familyportrait-swing-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:32:\"familyportrait-swing-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:32:\"familyportrait-swing-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:32:\"familyportrait-swing-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:32:\"familyportrait-swing-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("725","352","_wp_attached_file","2012/09/hartno_7741.jpg");
INSERT INTO wp_postmeta VALUES("726","352","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"750\";s:6:\"height\";s:3:\"600\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:23:\"2012/09/hartno_7741.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"hartno_7741-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"hartno_7741-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:23:\"hartno_7741-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:23:\"hartno_7741-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:23:\"hartno_7741-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:23:\"hartno_7741-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:23:\"hartno_7741-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:23:\"hartno_7741-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("731","355","_wp_attached_file","2012/09/liv_5194.jpg");
INSERT INTO wp_postmeta VALUES("732","355","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"480\";s:6:\"height\";s:3:\"600\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:20:\"2012/09/liv_5194.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"liv_5194-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:20:\"liv_5194-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:20:\"liv_5194-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:20:\"liv_5194-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:20:\"liv_5194-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:20:\"liv_5194-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:20:\"liv_5194-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("733","356","_wp_attached_file","2012/09/LIV_5698.jpg");
INSERT INTO wp_postmeta VALUES("734","356","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"750\";s:6:\"height\";s:3:\"600\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:20:\"2012/09/LIV_5698.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"LIV_5698-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:20:\"LIV_5698-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:20:\"LIV_5698-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:20:\"LIV_5698-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:20:\"LIV_5698-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:20:\"LIV_5698-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:20:\"LIV_5698-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:20:\"LIV_5698-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("737","358","_wp_attached_file","2012/09/LIV_9477.jpg");
INSERT INTO wp_postmeta VALUES("738","358","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"480\";s:6:\"height\";s:3:\"600\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:20:\"2012/09/LIV_9477.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"LIV_9477-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:20:\"LIV_9477-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:20:\"LIV_9477-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:20:\"LIV_9477-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:20:\"LIV_9477-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:20:\"LIV_9477-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:20:\"LIV_9477-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1241972361\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"125\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("741","360","_wp_attached_file","2012/09/Potter-1153.jpg");
INSERT INTO wp_postmeta VALUES("742","360","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"480\";s:6:\"height\";s:3:\"600\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:23:\"2012/09/Potter-1153.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"Potter-1153-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"Potter-1153-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:23:\"Potter-1153-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:23:\"Potter-1153-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:23:\"Potter-1153-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:23:\"Potter-1153-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:23:\"Potter-1153-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("743","361","_wp_attached_file","2012/09/anandarajan.jpg");
INSERT INTO wp_postmeta VALUES("744","361","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"750\";s:6:\"height\";s:3:\"600\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:23:\"2012/09/anandarajan.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"anandarajan-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"anandarajan-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:23:\"anandarajan-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:23:\"anandarajan-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:23:\"anandarajan-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:23:\"anandarajan-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:23:\"anandarajan-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:23:\"anandarajan-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("749","364","_wp_attached_file","2012/09/FamilyPortraitPhotographer002.jpg");
INSERT INTO wp_postmeta VALUES("750","364","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer002.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer002-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer002-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer002-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer002-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer002-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer002-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer002-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer002-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("751","365","_wp_attached_file","2012/09/FamilyPortraitPhotographer003.jpg");
INSERT INTO wp_postmeta VALUES("752","365","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer003.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer003-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer003-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer003-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer003-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer003-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer003-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer003-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer003-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("753","366","_wp_attached_file","2012/09/FamilyPortraitPhotographer004.jpg");
INSERT INTO wp_postmeta VALUES("754","366","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer004.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer004-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer004-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer004-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer004-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer004-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer004-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer004-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer004-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("755","367","_wp_attached_file","2012/09/FamilyPortraitPhotographer005.jpg");
INSERT INTO wp_postmeta VALUES("756","367","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer005.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer005-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer005-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer005-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer005-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer005-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer005-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer005-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer005-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("757","368","_wp_attached_file","2012/09/FamilyPortraitPhotographer006.jpg");
INSERT INTO wp_postmeta VALUES("758","368","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer006.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer006-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer006-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer006-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer006-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer006-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer006-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer006-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer006-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("759","369","_wp_attached_file","2012/09/FamilyPortraitPhotographer007.jpg");
INSERT INTO wp_postmeta VALUES("760","369","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer007.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer007-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer007-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer007-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer007-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer007-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer007-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer007-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer007-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("761","370","_wp_attached_file","2012/09/FamilyPortraitPhotographer008.jpg");
INSERT INTO wp_postmeta VALUES("762","370","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"532\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'63\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer008.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer008-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer008-199x300.jpg\";s:5:\"width\";s:3:\"199\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer008-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer008-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer008-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer008-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer008-410x616.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"616\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1262056921\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"98\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("763","371","_wp_attached_file","2012/09/FamilyPortraitPhotographer009.jpg");
INSERT INTO wp_postmeta VALUES("764","371","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer009.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer009-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer009-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer009-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer009-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer009-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer009-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer009-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer009-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("765","372","_wp_attached_file","2012/09/FamilyPortraitPhotographer010.jpg");
INSERT INTO wp_postmeta VALUES("766","372","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer010.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer010-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer010-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer010-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer010-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer010-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer010-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer010-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer010-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("769","374","_wp_attached_file","2012/09/FamilyPortraitPhotographer012.jpg");
INSERT INTO wp_postmeta VALUES("770","374","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer012.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer012-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer012-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer012-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer012-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer012-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer012-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer012-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer012-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("771","375","_wp_attached_file","2012/09/FamilyPortraitPhotographer013.jpg");
INSERT INTO wp_postmeta VALUES("772","375","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer013.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer013-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer013-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer013-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer013-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer013-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer013-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer013-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer013-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("775","377","_wp_attached_file","2012/09/FamilyPortraitPhotographer015.jpg");
INSERT INTO wp_postmeta VALUES("776","377","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer015.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer015-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer015-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer015-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer015-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer015-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer015-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer015-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer015-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("779","379","_wp_attached_file","2012/09/FamilyPortraitPhotographer017.jpg");
INSERT INTO wp_postmeta VALUES("780","379","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer017.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer017-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer017-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer017-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer017-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer017-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer017-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer017-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer017-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("781","380","_wp_attached_file","2012/09/FamilyPortraitPhotographer018.jpg");
INSERT INTO wp_postmeta VALUES("782","380","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer018.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer018-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer018-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer018-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer018-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer018-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer018-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer018-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer018-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("783","381","_wp_attached_file","2012/09/FamilyPortraitPhotographer019.jpg");
INSERT INTO wp_postmeta VALUES("784","381","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer019.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer019-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer019-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer019-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer019-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer019-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer019-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer019-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer019-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("785","382","_wp_attached_file","2012/09/FamilyPortraitPhotographer020.jpg");
INSERT INTO wp_postmeta VALUES("786","382","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer020.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer020-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer020-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer020-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer020-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer020-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer020-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer020-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer020-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("791","385","_wp_attached_file","2012/09/FamilyPortraitPhotographer023.jpg");
INSERT INTO wp_postmeta VALUES("792","385","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer023.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer023-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer023-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer023-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer023-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer023-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer023-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer023-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer023-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("793","386","_wp_attached_file","2012/09/FamilyPortraitPhotographer0241.jpg");
INSERT INTO wp_postmeta VALUES("794","386","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0241.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0241-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0241-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0241-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0241-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0241-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0241-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0241-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0241-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("795","387","_wp_attached_file","2012/09/FamilyPortraitPhotographer0251.jpg");
INSERT INTO wp_postmeta VALUES("796","387","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0251.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0251-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0251-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0251-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0251-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0251-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0251-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0251-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0251-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("797","388","_wp_attached_file","2012/09/FamilyPortraitPhotographer0261.jpg");
INSERT INTO wp_postmeta VALUES("798","388","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0261.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0261-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0261-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0261-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0261-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0261-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0261-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0261-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0261-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("799","389","_wp_attached_file","2012/09/FamilyPortraitPhotographer0271.jpg");
INSERT INTO wp_postmeta VALUES("800","389","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0271.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0271-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0271-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0271-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0271-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0271-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0271-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0271-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0271-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("801","390","_wp_attached_file","2012/09/FamilyPortraitPhotographer0281.jpg");
INSERT INTO wp_postmeta VALUES("802","390","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0281.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0281-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0281-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0281-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0281-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0281-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0281-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0281-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0281-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("803","391","_wp_attached_file","2012/09/FamilyPortraitPhotographer0291.jpg");
INSERT INTO wp_postmeta VALUES("804","391","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0291.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0291-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0291-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0291-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0291-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0291-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0291-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0291-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0291-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("805","392","_wp_attached_file","2012/09/FamilyPortraitPhotographer0301.jpg");
INSERT INTO wp_postmeta VALUES("806","392","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0301.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0301-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0301-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0301-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0301-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0301-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0301-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0301-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0301-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("807","393","_wp_attached_file","2012/09/FamilyPortraitPhotographer0311.jpg");
INSERT INTO wp_postmeta VALUES("808","393","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0311.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0311-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0311-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0311-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0311-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0311-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0311-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0311-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0311-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("809","394","_wp_attached_file","2012/09/FamilyPortraitPhotographer0321.jpg");
INSERT INTO wp_postmeta VALUES("810","394","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0321.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0321-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0321-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0321-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0321-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0321-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0321-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0321-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0321-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("811","395","_wp_attached_file","2012/09/FamilyPortraitPhotographer0331.jpg");
INSERT INTO wp_postmeta VALUES("812","395","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0331.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0331-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0331-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0331-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0331-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0331-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0331-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0331-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0331-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("813","396","_wp_attached_file","2012/09/FamilyPortraitPhotographer0341.jpg");
INSERT INTO wp_postmeta VALUES("814","396","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0341.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0341-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0341-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0341-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0341-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0341-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0341-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0341-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0341-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("817","398","_wp_attached_file","2012/09/FamilyPortraitPhotographer0361.jpg");
INSERT INTO wp_postmeta VALUES("818","398","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0361.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0361-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0361-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0361-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0361-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0361-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0361-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0361-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0361-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("821","400","_wp_attached_file","2012/09/FamilyPortraitPhotographer0381.jpg");
INSERT INTO wp_postmeta VALUES("822","400","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0381.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0381-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0381-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0381-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0381-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0381-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0381-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0381-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0381-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("823","401","_wp_attached_file","2012/09/FamilyPortraitPhotographer0391.jpg");
INSERT INTO wp_postmeta VALUES("824","401","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0391.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0391-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0391-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0391-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0391-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0391-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0391-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0391-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0391-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("825","402","_wp_attached_file","2012/09/FamilyPortraitPhotographer0401.jpg");
INSERT INTO wp_postmeta VALUES("826","402","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0401.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0401-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0401-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0401-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0401-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0401-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0401-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0401-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0401-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("827","403","_wp_attached_file","2012/09/FamilyPortraitPhotographer0411.jpg");
INSERT INTO wp_postmeta VALUES("828","403","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0411.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0411-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0411-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0411-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0411-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0411-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0411-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0411-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0411-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("829","404","_wp_attached_file","2012/09/FamilyPortraitPhotographer0421.jpg");
INSERT INTO wp_postmeta VALUES("830","404","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0421.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0421-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0421-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0421-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0421-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0421-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0421-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0421-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0421-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("833","406","_wp_attached_file","2012/09/FamilyPortraitPhotographer0441.jpg");
INSERT INTO wp_postmeta VALUES("834","406","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0441.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0441-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0441-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0441-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0441-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0441-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0441-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0441-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0441-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("835","407","_wp_attached_file","2012/09/FamilyPortraitPhotographer0451.jpg");
INSERT INTO wp_postmeta VALUES("836","407","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0451.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0451-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0451-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0451-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0451-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0451-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0451-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0451-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0451-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("837","408","_wp_attached_file","2012/09/FamilyPortraitPhotographer0461.jpg");
INSERT INTO wp_postmeta VALUES("838","408","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0461.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0461-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0461-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0461-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0461-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0461-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0461-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0461-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0461-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("839","409","_wp_attached_file","2012/09/FamilyPortraitPhotographer0471.jpg");
INSERT INTO wp_postmeta VALUES("840","409","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0471.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0471-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0471-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0471-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0471-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0471-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0471-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0471-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0471-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("841","410","_wp_attached_file","2012/09/FamilyPortraitPhotographer0481.jpg");
INSERT INTO wp_postmeta VALUES("842","410","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0481.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0481-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0481-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0481-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0481-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0481-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0481-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0481-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0481-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("843","411","_wp_attached_file","2012/09/FamilyPortraitPhotographer0491.jpg");
INSERT INTO wp_postmeta VALUES("844","411","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0491.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0491-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0491-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0491-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0491-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0491-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0491-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0491-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0491-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("845","412","_wp_attached_file","2012/09/FamilyPortraitPhotographer0501.jpg");
INSERT INTO wp_postmeta VALUES("846","412","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0501.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0501-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0501-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0501-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0501-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0501-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0501-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0501-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0501-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("849","414","_wp_attached_file","2012/09/FamilyPortraitPhotographer0521.jpg");
INSERT INTO wp_postmeta VALUES("850","414","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0521.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0521-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0521-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0521-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0521-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0521-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0521-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0521-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0521-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("851","415","_wp_attached_file","2012/09/FamilyPortraitPhotographer0531.jpg");
INSERT INTO wp_postmeta VALUES("852","415","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0531.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0531-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0531-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0531-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0531-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0531-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0531-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0531-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0531-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("857","418","_wp_attached_file","2012/09/FamilyPortraitPhotographer0561.jpg");
INSERT INTO wp_postmeta VALUES("858","418","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0561.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0561-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0561-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0561-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0561-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0561-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0561-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0561-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0561-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("859","419","_wp_attached_file","2012/09/FamilyPortraitPhotographer0571.jpg");
INSERT INTO wp_postmeta VALUES("860","419","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:42:\"2012/09/FamilyPortraitPhotographer0571.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0571-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0571-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0571-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0571-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0571-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0571-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0571-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"FamilyPortraitPhotographer0571-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("863","421","_wp_attached_file","2012/09/FamilyPortraitPhotographer059.jpg");
INSERT INTO wp_postmeta VALUES("864","421","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer059.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer059-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer059-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer059-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer059-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer059-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer059-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer059-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer059-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("865","422","_wp_attached_file","2012/09/FamilyPortraitPhotographer060.jpg");
INSERT INTO wp_postmeta VALUES("866","422","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer060.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer060-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer060-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer060-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer060-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer060-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer060-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer060-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer060-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("869","424","_wp_attached_file","2012/09/FamilyPortraitPhotographer062.jpg");
INSERT INTO wp_postmeta VALUES("870","424","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer062.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer062-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer062-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer062-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer062-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer062-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer062-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer062-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer062-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("871","425","_wp_attached_file","2012/09/FamilyPortraitPhotographer063.jpg");
INSERT INTO wp_postmeta VALUES("872","425","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer063.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer063-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer063-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer063-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer063-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer063-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer063-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer063-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer063-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("873","426","_wp_attached_file","2012/09/FamilyPortraitPhotographer064.jpg");
INSERT INTO wp_postmeta VALUES("874","426","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer064.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer064-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer064-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer064-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer064-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer064-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer064-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer064-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer064-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("877","428","_wp_attached_file","2012/09/FamilyPortraitPhotographer066.jpg");
INSERT INTO wp_postmeta VALUES("878","428","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer066.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer066-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer066-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer066-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer066-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer066-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer066-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer066-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer066-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("883","431","_wp_attached_file","2012/09/FamilyPortraitPhotographer069.jpg");
INSERT INTO wp_postmeta VALUES("884","431","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer069.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer069-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer069-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer069-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer069-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer069-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer069-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer069-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer069-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("885","432","_wp_attached_file","2012/09/FamilyPortraitPhotographer070.jpg");
INSERT INTO wp_postmeta VALUES("886","432","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer070.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer070-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer070-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer070-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer070-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer070-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer070-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer070-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer070-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("887","433","_wp_attached_file","2012/09/FamilyPortraitPhotographer071.jpg");
INSERT INTO wp_postmeta VALUES("888","433","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer071.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer071-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer071-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer071-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer071-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer071-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer071-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer071-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer071-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("897","438","_wp_attached_file","2012/09/FamilyPortraitPhotographer076.jpg");
INSERT INTO wp_postmeta VALUES("898","438","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer076.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer076-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer076-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer076-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer076-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer076-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer076-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer076-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer076-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("899","439","_wp_attached_file","2012/09/FamilyPortraitPhotographer077.jpg");
INSERT INTO wp_postmeta VALUES("900","439","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer077.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer077-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer077-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer077-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer077-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer077-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer077-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer077-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer077-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("901","440","_wp_attached_file","2012/09/FamilyPortraitPhotographer078.jpg");
INSERT INTO wp_postmeta VALUES("902","440","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer078.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer078-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer078-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer078-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer078-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer078-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer078-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer078-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer078-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("903","441","_wp_attached_file","2012/09/FamilyPortraitPhotographer079.jpg");
INSERT INTO wp_postmeta VALUES("904","441","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer079.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer079-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer079-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer079-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer079-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer079-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer079-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer079-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer079-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("905","442","_wp_attached_file","2012/09/FamilyPortraitPhotographer080.jpg");
INSERT INTO wp_postmeta VALUES("906","442","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer080.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer080-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer080-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer080-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer080-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer080-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer080-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer080-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer080-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("909","444","_wp_attached_file","2012/09/FamilyPortraitPhotographer082.jpg");
INSERT INTO wp_postmeta VALUES("910","444","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer082.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer082-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer082-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer082-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer082-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer082-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer082-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer082-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer082-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("911","445","_wp_attached_file","2012/09/FamilyPortraitPhotographer083.jpg");
INSERT INTO wp_postmeta VALUES("912","445","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer083.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer083-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer083-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer083-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer083-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer083-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer083-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer083-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer083-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("915","447","_wp_attached_file","2012/09/FamilyPortraitPhotographer085.jpg");
INSERT INTO wp_postmeta VALUES("916","447","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer085.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer085-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer085-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer085-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer085-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer085-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer085-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer085-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer085-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("917","448","_wp_attached_file","2012/09/FamilyPortraitPhotographer086.jpg");
INSERT INTO wp_postmeta VALUES("918","448","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer086.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer086-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer086-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer086-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer086-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer086-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer086-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer086-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer086-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("925","452","_wp_attached_file","2012/09/FamilyPortraitPhotographer090.jpg");
INSERT INTO wp_postmeta VALUES("926","452","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:41:\"2012/09/FamilyPortraitPhotographer090.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer090-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer090-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer090-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer090-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer090-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer090-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer090-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:41:\"FamilyPortraitPhotographer090-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("927","81","page_gallery_id","1086");
INSERT INTO wp_postmeta VALUES("928","454","_edit_last","1");
INSERT INTO wp_postmeta VALUES("929","454","_edit_lock","1348122182:1");
INSERT INTO wp_postmeta VALUES("930","454","_gallery_type","");
INSERT INTO wp_postmeta VALUES("931","455","_wp_attached_file","2012/09/test1024x500.jpg");
INSERT INTO wp_postmeta VALUES("932","455","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:24:\"2012/09/test1024x500.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"test1024x500-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"test1024x500-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:24:\"test1024x500-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:24:\"test1024x500-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:24:\"test1024x500-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:24:\"test1024x500-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:24:\"test1024x500-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:24:\"test1024x500-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("933","456","_wp_attached_file","2012/09/test1024x600.jpg");
INSERT INTO wp_postmeta VALUES("934","456","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:14:\"hwstring_small\";s:23:\"height=\'75\' width=\'128\'\";s:4:\"file\";s:24:\"2012/09/test1024x600.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"test1024x600-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"test1024x600-300x175.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"175\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:24:\"test1024x600-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:24:\"test1024x600-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:24:\"test1024x600-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:24:\"test1024x600-635x372.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"372\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:24:\"test1024x600-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:24:\"test1024x600-410x240.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"240\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("935","456","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("936","456","_wp_trash_meta_time","1347616311");
INSERT INTO wp_postmeta VALUES("937","455","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("938","455","_wp_trash_meta_time","1347616311");
INSERT INTO wp_postmeta VALUES("946","463","_gallery_type","");
INSERT INTO wp_postmeta VALUES("947","463","_edit_lock","1348201776:1");
INSERT INTO wp_postmeta VALUES("950","465","_wp_attached_file","2012/09/IndividualPortraits-MelbourneSydney16.jpg");
INSERT INTO wp_postmeta VALUES("951","465","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"750\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:49:\"2012/09/IndividualPortraits-MelbourneSydney16.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney16-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney16-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney16-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney16-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney16-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney16-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney16-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("952","466","_wp_attached_file","2012/09/IndividualPortraits-MelbourneSydney17.jpg");
INSERT INTO wp_postmeta VALUES("953","466","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"750\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:49:\"2012/09/IndividualPortraits-MelbourneSydney17.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney17-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney17-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney17-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney17-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney17-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney17-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney17-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("954","467","_wp_attached_file","2012/09/IndividualPortraits-MelbourneSydney18.jpg");
INSERT INTO wp_postmeta VALUES("955","467","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"750\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:49:\"2012/09/IndividualPortraits-MelbourneSydney18.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney18-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney18-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney18-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney18-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney18-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney18-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney18-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("960","470","_wp_attached_file","2012/09/IndividualPortraits-MelbourneSydney21.jpg");
INSERT INTO wp_postmeta VALUES("961","470","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"750\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:49:\"2012/09/IndividualPortraits-MelbourneSydney21.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney21-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney21-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney21-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney21-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney21-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney21-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney21-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("968","474","_wp_attached_file","2012/09/IndividualPortraits-MelbourneSydney25.jpg");
INSERT INTO wp_postmeta VALUES("969","474","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"938\";s:6:\"height\";s:3:\"750\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:49:\"2012/09/IndividualPortraits-MelbourneSydney25.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney25-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney25-300x239.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"239\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney25-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney25-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney25-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney25-635x507.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"507\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney25-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney25-410x327.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"327\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("972","476","_wp_attached_file","2012/09/IndividualPortraits-MelbourneSydney01.jpg");
INSERT INTO wp_postmeta VALUES("973","476","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"750\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:49:\"2012/09/IndividualPortraits-MelbourneSydney01.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney01-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney01-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney01-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney01-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney01-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney01-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney01-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("982","481","_wp_attached_file","2012/09/IndividualPortraits-MelbourneSydney06.jpg");
INSERT INTO wp_postmeta VALUES("983","481","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"750\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:49:\"2012/09/IndividualPortraits-MelbourneSydney06.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney06-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney06-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney06-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney06-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney06-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney06-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney06-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("984","482","_wp_attached_file","2012/09/IndividualPortraits-MelbourneSydney07.jpg");
INSERT INTO wp_postmeta VALUES("985","482","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"938\";s:6:\"height\";s:3:\"750\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:49:\"2012/09/IndividualPortraits-MelbourneSydney07.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney07-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney07-300x239.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"239\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney07-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney07-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney07-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney07-635x507.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"507\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney07-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney07-410x327.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"327\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:24:\"Living Image Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("990","485","_wp_attached_file","2012/09/IndividualPortraits-MelbourneSydney10.jpg");
INSERT INTO wp_postmeta VALUES("991","485","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"750\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:49:\"2012/09/IndividualPortraits-MelbourneSydney10.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney10-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney10-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney10-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney10-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney10-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney10-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:49:\"IndividualPortraits-MelbourneSydney10-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1000","83","page_gallery_id","1096");
INSERT INTO wp_postmeta VALUES("1001","491","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1002","491","_gallery_type","");
INSERT INTO wp_postmeta VALUES("1003","491","_edit_lock","1348196594:1");
INSERT INTO wp_postmeta VALUES("1014","497","_wp_attached_file","2012/09/NewbornPortraitPhotographer031.jpg");
INSERT INTO wp_postmeta VALUES("1015","497","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"938\";s:6:\"height\";s:3:\"750\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:42:\"2012/09/NewbornPortraitPhotographer031.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer031-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer031-300x239.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"239\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer031-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer031-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer031-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer031-635x507.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"507\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer031-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer031-410x327.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"327\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1022","501","_wp_attached_file","2012/09/NewbornPortraitPhotographer002.jpg");
INSERT INTO wp_postmeta VALUES("1023","501","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"938\";s:6:\"height\";s:3:\"750\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:42:\"2012/09/NewbornPortraitPhotographer002.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer002-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer002-300x239.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"239\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer002-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer002-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer002-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer002-635x507.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"507\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer002-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer002-410x327.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"327\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1034","507","_wp_attached_file","2012/09/NewbornPortraitPhotographer008.jpg");
INSERT INTO wp_postmeta VALUES("1035","507","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"938\";s:6:\"height\";s:3:\"750\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:42:\"2012/09/NewbornPortraitPhotographer008.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer008-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer008-300x239.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"239\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer008-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer008-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer008-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer008-635x507.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"507\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer008-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer008-410x327.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"327\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1042","511","_wp_attached_file","2012/09/NewbornPortraitPhotographer012.jpg");
INSERT INTO wp_postmeta VALUES("1043","511","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"938\";s:6:\"height\";s:3:\"750\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:42:\"2012/09/NewbornPortraitPhotographer012.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer012-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer012-300x239.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"239\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer012-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer012-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer012-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer012-635x507.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"507\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer012-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer012-410x327.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"327\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1062","521","_wp_attached_file","2012/09/NewbornPortraitPhotographer022.jpg");
INSERT INTO wp_postmeta VALUES("1063","521","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"938\";s:6:\"height\";s:3:\"750\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:42:\"2012/09/NewbornPortraitPhotographer022.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer022-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer022-300x239.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"239\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer022-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer022-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer022-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer022-635x507.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"507\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer022-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:42:\"NewbornPortraitPhotographer022-410x327.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"327\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1070","85","page_gallery_id","1101");
INSERT INTO wp_postmeta VALUES("1071","527","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1072","527","_edit_lock","1348201317:1");
INSERT INTO wp_postmeta VALUES("1073","527","_gallery_type","");
INSERT INTO wp_postmeta VALUES("1086","534","_wp_attached_file","2012/09/PregnancyPortraitPhotographer007.jpg");
INSERT INTO wp_postmeta VALUES("1087","534","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1128\";s:6:\"height\";s:3:\"750\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:44:\"2012/09/PregnancyPortraitPhotographer007.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:44:\"PregnancyPortraitPhotographer007-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:44:\"PregnancyPortraitPhotographer007-300x199.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"199\";}s:5:\"large\";a:3:{s:4:\"file\";s:45:\"PregnancyPortraitPhotographer007-1024x680.jpg\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"680\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:44:\"PregnancyPortraitPhotographer007-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:44:\"PregnancyPortraitPhotographer007-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:44:\"PregnancyPortraitPhotographer007-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:44:\"PregnancyPortraitPhotographer007-635x422.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"422\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:44:\"PregnancyPortraitPhotographer007-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:44:\"PregnancyPortraitPhotographer007-410x272.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"272\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1090","536","_wp_attached_file","2012/09/PregnancyPortraitPhotographer009.jpg");
INSERT INTO wp_postmeta VALUES("1091","536","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1128\";s:6:\"height\";s:3:\"750\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:44:\"2012/09/PregnancyPortraitPhotographer009.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:44:\"PregnancyPortraitPhotographer009-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:44:\"PregnancyPortraitPhotographer009-300x199.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"199\";}s:5:\"large\";a:3:{s:4:\"file\";s:45:\"PregnancyPortraitPhotographer009-1024x680.jpg\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"680\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:44:\"PregnancyPortraitPhotographer009-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:44:\"PregnancyPortraitPhotographer009-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:44:\"PregnancyPortraitPhotographer009-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:44:\"PregnancyPortraitPhotographer009-635x422.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"422\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:44:\"PregnancyPortraitPhotographer009-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:44:\"PregnancyPortraitPhotographer009-410x272.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"272\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1102","87","page_gallery_id","1108");
INSERT INTO wp_postmeta VALUES("1104","12","page_bg_style","Static Image");
INSERT INTO wp_postmeta VALUES("1105","545","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1106","545","_edit_lock","1349921111:1");
INSERT INTO wp_postmeta VALUES("1906","545","page_bg_gallery_id","643");
INSERT INTO wp_postmeta VALUES("1109","545","_wp_page_template","page_f.php");
INSERT INTO wp_postmeta VALUES("1110","547","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1111","547","_edit_lock","1349921924:1");
INSERT INTO wp_postmeta VALUES("1972","893","_wp_page_template","template-gallery-flip.php");
INSERT INTO wp_postmeta VALUES("1114","547","_wp_page_template","page_f.php");
INSERT INTO wp_postmeta VALUES("1115","550","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1116","550","_edit_lock","1349921108:1");
INSERT INTO wp_postmeta VALUES("1973","789","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("1119","550","_wp_page_template","page_f.php");
INSERT INTO wp_postmeta VALUES("1120","552","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1121","552","_edit_lock","1349921093:1");
INSERT INTO wp_postmeta VALUES("1969","893","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1970","893","_edit_lock","1349920855:1");
INSERT INTO wp_postmeta VALUES("1124","552","_wp_page_template","page_f.php");
INSERT INTO wp_postmeta VALUES("1125","554","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("1126","554","_menu_item_menu_item_parent","25");
INSERT INTO wp_postmeta VALUES("1127","554","_menu_item_object_id","552");
INSERT INTO wp_postmeta VALUES("1128","554","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("1129","554","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("1130","554","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("1131","554","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("1132","554","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("1161","15","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("1134","555","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("1135","555","_menu_item_menu_item_parent","25");
INSERT INTO wp_postmeta VALUES("1136","555","_menu_item_object_id","550");
INSERT INTO wp_postmeta VALUES("1137","555","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("1138","555","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("1139","555","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("1140","555","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("1141","555","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("1910","15","page_bg_gallery_id","643");
INSERT INTO wp_postmeta VALUES("1143","556","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("1144","556","_menu_item_menu_item_parent","25");
INSERT INTO wp_postmeta VALUES("1145","556","_menu_item_object_id","547");
INSERT INTO wp_postmeta VALUES("1146","556","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("1147","556","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("1148","556","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("1149","556","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("1150","556","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("1152","557","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("1153","557","_menu_item_menu_item_parent","25");
INSERT INTO wp_postmeta VALUES("1154","557","_menu_item_object_id","545");
INSERT INTO wp_postmeta VALUES("1155","557","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("1156","557","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("1157","557","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("1158","557","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("1159","557","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("1164","18","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("1165","573","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1166","573","_edit_lock","1349920618:1");
INSERT INTO wp_postmeta VALUES("1901","573","page_bg_gallery_id","643");
INSERT INTO wp_postmeta VALUES("1168","573","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("1169","573","_wp_page_template","page_f.php");
INSERT INTO wp_postmeta VALUES("1170","577","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("1171","577","_menu_item_menu_item_parent","22");
INSERT INTO wp_postmeta VALUES("1172","577","_menu_item_object_id","573");
INSERT INTO wp_postmeta VALUES("1173","577","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("1174","577","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("1175","577","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("1176","577","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("1177","577","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("1179","578","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1180","578","_edit_lock","1349920659:1");
INSERT INTO wp_postmeta VALUES("1902","578","page_bg_gallery_id","643");
INSERT INTO wp_postmeta VALUES("1182","578","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("1183","578","_wp_page_template","page_r.php");
INSERT INTO wp_postmeta VALUES("1184","580","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1185","580","_edit_lock","1349852044:1");
INSERT INTO wp_postmeta VALUES("1186","581","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("1187","581","_menu_item_menu_item_parent","22");
INSERT INTO wp_postmeta VALUES("1188","581","_menu_item_object_id","20");
INSERT INTO wp_postmeta VALUES("1189","581","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("1190","581","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("1191","581","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("1192","581","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("1193","581","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("1196","580","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("1197","580","_wp_page_template","page_r.php");
INSERT INTO wp_postmeta VALUES("1198","583","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1199","583","_edit_lock","1349852041:1");
INSERT INTO wp_postmeta VALUES("1201","583","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("1202","583","_wp_page_template","page_r.php");
INSERT INTO wp_postmeta VALUES("1203","587","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1204","587","_edit_lock","1349852046:1");
INSERT INTO wp_postmeta VALUES("1207","592","_wp_attached_file","2012/09/Traditional-Fine-Art-Album.jpg");
INSERT INTO wp_postmeta VALUES("1208","592","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"950\";s:6:\"height\";s:3:\"633\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:38:\"2012/09/Traditional-Fine-Art-Album.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:38:\"Traditional-Fine-Art-Album-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:38:\"Traditional-Fine-Art-Album-300x199.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"199\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:38:\"Traditional-Fine-Art-Album-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:38:\"Traditional-Fine-Art-Album-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:38:\"Traditional-Fine-Art-Album-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:38:\"Traditional-Fine-Art-Album-635x423.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"423\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:38:\"Traditional-Fine-Art-Album-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:38:\"Traditional-Fine-Art-Album-410x273.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"273\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1209","593","_wp_attached_file","2012/09/Designer-Magazine-Album.jpg");
INSERT INTO wp_postmeta VALUES("1210","593","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"950\";s:6:\"height\";s:3:\"633\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:35:\"2012/09/Designer-Magazine-Album.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:35:\"Designer-Magazine-Album-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:35:\"Designer-Magazine-Album-300x199.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"199\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:35:\"Designer-Magazine-Album-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:35:\"Designer-Magazine-Album-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:35:\"Designer-Magazine-Album-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:35:\"Designer-Magazine-Album-635x423.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"423\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:35:\"Designer-Magazine-Album-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:35:\"Designer-Magazine-Album-410x273.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"273\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1211","608","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("1212","608","_menu_item_menu_item_parent","26");
INSERT INTO wp_postmeta VALUES("1213","608","_menu_item_object_id","583");
INSERT INTO wp_postmeta VALUES("1214","608","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("1215","608","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("1216","608","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("1217","608","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("1218","608","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("1905","587","page_bg_gallery_id","643");
INSERT INTO wp_postmeta VALUES("1220","609","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("1221","609","_menu_item_menu_item_parent","26");
INSERT INTO wp_postmeta VALUES("1222","609","_menu_item_object_id","580");
INSERT INTO wp_postmeta VALUES("1223","609","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("1224","609","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("1225","609","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("1226","609","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("1227","609","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("1239","587","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("1229","610","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("1230","610","_menu_item_menu_item_parent","26");
INSERT INTO wp_postmeta VALUES("1231","610","_menu_item_object_id","578");
INSERT INTO wp_postmeta VALUES("1232","610","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("1233","610","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("1234","610","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("1235","610","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("1236","610","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("1240","587","_wp_page_template","page_r.php");
INSERT INTO wp_postmeta VALUES("1241","630","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("1242","630","_menu_item_menu_item_parent","26");
INSERT INTO wp_postmeta VALUES("1243","630","_menu_item_object_id","587");
INSERT INTO wp_postmeta VALUES("1244","630","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("1245","630","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("1246","630","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("1247","630","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("1248","630","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("1251","545","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("1900","20","page_bg_gallery_id","643");
INSERT INTO wp_postmeta VALUES("1254","20","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("1256","1","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("1257","1","_wp_trash_meta_time","1348014805");
INSERT INTO wp_postmeta VALUES("1258","1","_wp_trash_meta_comments_status","a:1:{i:1;s:1:\"1\";}");
INSERT INTO wp_postmeta VALUES("1259","640","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1260","640","_edit_lock","1349926597:1");
INSERT INTO wp_postmeta VALUES("1261","640","post_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("1267","643","_gallery_type","");
INSERT INTO wp_postmeta VALUES("1266","643","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1268","643","_edit_lock","1349852834:1");
INSERT INTO wp_postmeta VALUES("2548","643","_menu_order","a:1:{i:1140;s:1:\"0\";}");
INSERT INTO wp_postmeta VALUES("1271","640","post_bg_gallery_id","759");
INSERT INTO wp_postmeta VALUES("1314","698","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:18:\"2012/09/baby_5.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:18:\"baby_5-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:18:\"baby_5-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:18:\"baby_5-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:18:\"baby_5-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:18:\"baby_5-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:18:\"baby_5-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:18:\"baby_5-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:18:\"baby_5-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1313","698","_wp_attached_file","2012/09/baby_5.jpg");
INSERT INTO wp_postmeta VALUES("1312","697","_edit_lock","1348125063:1");
INSERT INTO wp_postmeta VALUES("1311","697","_gallery_type","");
INSERT INTO wp_postmeta VALUES("1310","697","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1287","656","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1288","656","_edit_lock","1349920990:1");
INSERT INTO wp_postmeta VALUES("1289","656","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("2547","1140","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:3:\"900\";s:14:\"hwstring_small\";s:23:\"height=\'80\' width=\'128\'\";s:4:\"file\";s:32:\"2012/09/LivingimgBackground3.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:32:\"LivingimgBackground3-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:32:\"LivingimgBackground3-300x187.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"187\";}s:5:\"large\";a:3:{s:4:\"file\";s:33:\"LivingimgBackground3-1024x640.jpg\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"640\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:32:\"LivingimgBackground3-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:32:\"LivingimgBackground3-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:32:\"LivingimgBackground3-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:32:\"LivingimgBackground3-635x396.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"396\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:32:\"LivingimgBackground3-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:32:\"LivingimgBackground3-410x256.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"256\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1291","656","_wp_page_template","page_f.php");
INSERT INTO wp_postmeta VALUES("1292","659","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("1293","659","_menu_item_menu_item_parent","0");
INSERT INTO wp_postmeta VALUES("1294","659","_menu_item_object_id","656");
INSERT INTO wp_postmeta VALUES("1295","659","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("1296","659","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("1297","659","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("1298","659","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("1299","659","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("1300","659","_menu_item_orphaned","1348102702");
INSERT INTO wp_postmeta VALUES("1301","662","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("1302","662","_menu_item_menu_item_parent","0");
INSERT INTO wp_postmeta VALUES("1303","662","_menu_item_object_id","656");
INSERT INTO wp_postmeta VALUES("1304","662","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("1305","662","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("1306","662","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("1307","662","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("1308","662","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("1315","699","_wp_attached_file","2012/09/baby_6.jpg");
INSERT INTO wp_postmeta VALUES("1316","699","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:18:\"2012/09/baby_6.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:18:\"baby_6-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:18:\"baby_6-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:18:\"baby_6-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:18:\"baby_6-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:18:\"baby_6-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:18:\"baby_6-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:18:\"baby_6-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:18:\"baby_6-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1317","700","_wp_attached_file","2012/09/baby_1.jpg");
INSERT INTO wp_postmeta VALUES("1318","700","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:18:\"2012/09/baby_1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:18:\"baby_1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:18:\"baby_1-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:18:\"baby_1-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:18:\"baby_1-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:18:\"baby_1-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:18:\"baby_1-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:18:\"baby_1-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:18:\"baby_1-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1319","701","_wp_attached_file","2012/09/baby_2.jpg");
INSERT INTO wp_postmeta VALUES("1320","701","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:18:\"2012/09/baby_2.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:18:\"baby_2-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:18:\"baby_2-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:18:\"baby_2-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:18:\"baby_2-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:18:\"baby_2-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:18:\"baby_2-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:18:\"baby_2-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:18:\"baby_2-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1321","702","_wp_attached_file","2012/09/baby_3.jpg");
INSERT INTO wp_postmeta VALUES("1322","702","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:18:\"2012/09/baby_3.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:18:\"baby_3-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:18:\"baby_3-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:18:\"baby_3-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:18:\"baby_3-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:18:\"baby_3-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:18:\"baby_3-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:18:\"baby_3-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:18:\"baby_3-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1323","703","_wp_attached_file","2012/09/baby_4.jpg");
INSERT INTO wp_postmeta VALUES("1324","703","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:18:\"2012/09/baby_4.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:18:\"baby_4-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:18:\"baby_4-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:18:\"baby_4-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:18:\"baby_4-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:18:\"baby_4-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:18:\"baby_4-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:18:\"baby_4-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:18:\"baby_4-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1326","705","_wp_attached_file","2012/09/babies_slide_1.jpg");
INSERT INTO wp_postmeta VALUES("1327","705","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:26:\"2012/09/babies_slide_1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:26:\"babies_slide_1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:26:\"babies_slide_1-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:26:\"babies_slide_1-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:26:\"babies_slide_1-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:26:\"babies_slide_1-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:26:\"babies_slide_1-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:26:\"babies_slide_1-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:26:\"babies_slide_1-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1328","703","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1329","703","_wp_trash_meta_time","1348123803");
INSERT INTO wp_postmeta VALUES("1330","702","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1331","702","_wp_trash_meta_time","1348123803");
INSERT INTO wp_postmeta VALUES("1332","701","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1333","701","_wp_trash_meta_time","1348123803");
INSERT INTO wp_postmeta VALUES("1334","700","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1335","700","_wp_trash_meta_time","1348123803");
INSERT INTO wp_postmeta VALUES("1336","699","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1337","699","_wp_trash_meta_time","1348123803");
INSERT INTO wp_postmeta VALUES("1338","698","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1339","698","_wp_trash_meta_time","1348123803");
INSERT INTO wp_postmeta VALUES("1340","706","_wp_attached_file","2012/09/babies_slide_2.jpg");
INSERT INTO wp_postmeta VALUES("1341","706","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:26:\"2012/09/babies_slide_2.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:26:\"babies_slide_2-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:26:\"babies_slide_2-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:26:\"babies_slide_2-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:26:\"babies_slide_2-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:26:\"babies_slide_2-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:26:\"babies_slide_2-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:26:\"babies_slide_2-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:26:\"babies_slide_2-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1342","707","_wp_attached_file","2012/09/babies_slide_3.jpg");
INSERT INTO wp_postmeta VALUES("1343","707","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:26:\"2012/09/babies_slide_3.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:26:\"babies_slide_3-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:26:\"babies_slide_3-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:26:\"babies_slide_3-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:26:\"babies_slide_3-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:26:\"babies_slide_3-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:26:\"babies_slide_3-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:26:\"babies_slide_3-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:26:\"babies_slide_3-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1344","707","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1345","707","_wp_trash_meta_time","1348124520");
INSERT INTO wp_postmeta VALUES("1346","706","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1347","706","_wp_trash_meta_time","1348124520");
INSERT INTO wp_postmeta VALUES("1348","705","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1349","705","_wp_trash_meta_time","1348124520");
INSERT INTO wp_postmeta VALUES("1370","718","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1371","718","_gallery_type","");
INSERT INTO wp_postmeta VALUES("1372","718","_edit_lock","1348202224:1");
INSERT INTO wp_postmeta VALUES("1373","719","_wp_attached_file","2012/09/individual_slide_6.jpg");
INSERT INTO wp_postmeta VALUES("1374","719","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:30:\"2012/09/individual_slide_6.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:30:\"individual_slide_6-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:30:\"individual_slide_6-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:30:\"individual_slide_6-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:30:\"individual_slide_6-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:30:\"individual_slide_6-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:30:\"individual_slide_6-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:30:\"individual_slide_6-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:30:\"individual_slide_6-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1375","720","_wp_attached_file","2012/09/individual_slide_7.jpg");
INSERT INTO wp_postmeta VALUES("1376","720","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:30:\"2012/09/individual_slide_7.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:30:\"individual_slide_7-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:30:\"individual_slide_7-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:30:\"individual_slide_7-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:30:\"individual_slide_7-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:30:\"individual_slide_7-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:30:\"individual_slide_7-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:30:\"individual_slide_7-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:30:\"individual_slide_7-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1401","83","page_bg_gallery_id","1096");
INSERT INTO wp_postmeta VALUES("1402","736","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1403","736","_gallery_type","");
INSERT INTO wp_postmeta VALUES("1404","736","_edit_lock","1348201596:1");
INSERT INTO wp_postmeta VALUES("1411","740","_wp_attached_file","2012/09/couple_slide_2.jpg");
INSERT INTO wp_postmeta VALUES("1412","740","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:26:\"2012/09/couple_slide_2.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:26:\"couple_slide_2-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:26:\"couple_slide_2-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:26:\"couple_slide_2-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:26:\"couple_slide_2-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:26:\"couple_slide_2-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:26:\"couple_slide_2-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:26:\"couple_slide_2-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:26:\"couple_slide_2-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1423","746","_wp_attached_file","2012/09/couple_slide_8.jpg");
INSERT INTO wp_postmeta VALUES("1424","746","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:26:\"2012/09/couple_slide_8.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:26:\"couple_slide_8-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:26:\"couple_slide_8-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:26:\"couple_slide_8-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:26:\"couple_slide_8-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:26:\"couple_slide_8-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:26:\"couple_slide_8-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:26:\"couple_slide_8-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:26:\"couple_slide_8-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1425","79","page_bg_gallery_id","1079");
INSERT INTO wp_postmeta VALUES("1426","748","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1427","748","_gallery_type","");
INSERT INTO wp_postmeta VALUES("1428","748","_edit_lock","1348196773:1");
INSERT INTO wp_postmeta VALUES("1445","757","_wp_attached_file","2012/09/maternity_slide_7.jpg");
INSERT INTO wp_postmeta VALUES("1446","757","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:29:\"2012/09/maternity_slide_7.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:29:\"maternity_slide_7-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:29:\"maternity_slide_7-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:29:\"maternity_slide_7-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:29:\"maternity_slide_7-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:29:\"maternity_slide_7-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:29:\"maternity_slide_7-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:29:\"maternity_slide_7-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:29:\"maternity_slide_7-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1447","87","page_bg_gallery_id","1108");
INSERT INTO wp_postmeta VALUES("1448","759","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1449","759","_edit_lock","1348623301:1");
INSERT INTO wp_postmeta VALUES("1450","759","_gallery_type","");
INSERT INTO wp_postmeta VALUES("1460","246","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1461","246","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1462","243","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1463","243","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1464","242","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1465","242","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1466","241","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1467","241","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1468","239","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1469","239","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1470","238","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1471","238","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1472","237","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1473","237","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1474","236","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1475","236","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1476","235","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1477","235","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1478","233","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1456","252","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1457","252","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1458","250","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1459","250","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("2545","6","page_bg_gallery_id","643");
INSERT INTO wp_postmeta VALUES("1479","233","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1480","232","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1481","232","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1482","231","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1483","231","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1484","230","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1485","230","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1486","229","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1487","229","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1488","228","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1489","228","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1490","225","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1491","225","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1492","224","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1493","224","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1494","223","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1495","223","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1496","222","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1497","222","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1498","216","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1499","216","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1500","214","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1501","214","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1502","213","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1503","213","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1504","212","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1505","212","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1506","210","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1507","210","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1508","208","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1509","208","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1510","207","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1511","207","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1512","205","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1513","205","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1514","203","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1515","203","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1516","202","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1517","202","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1518","201","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1519","201","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1520","200","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1521","200","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1522","199","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1523","199","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1524","198","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1525","198","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1526","197","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1527","197","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1528","196","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1529","196","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1530","193","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1531","193","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1532","192","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1533","192","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1534","189","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1535","189","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1536","188","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1537","188","_wp_trash_meta_time","1348185522");
INSERT INTO wp_postmeta VALUES("1538","184","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1539","184","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1540","183","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1541","183","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1542","181","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1543","181","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1544","177","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1545","177","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1546","176","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1547","176","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1548","173","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1549","173","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1550","172","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1551","172","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1552","169","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1553","169","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1554","168","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1555","168","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1556","165","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1557","165","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1558","164","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1559","164","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1560","163","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1561","163","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1562","161","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1563","161","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1564","160","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1565","160","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1566","159","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1567","159","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1568","158","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1569","158","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1570","156","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1571","156","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1572","154","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1573","154","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1574","153","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1575","153","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1576","151","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1577","151","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1578","149","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1579","149","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1580","147","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1581","147","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1582","139","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1583","139","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1584","137","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1585","137","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1586","131","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1587","131","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1588","130","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1589","130","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1590","127","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1591","127","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1592","126","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1593","126","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1594","125","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1595","125","_wp_trash_meta_time","1348185523");
INSERT INTO wp_postmeta VALUES("1600","452","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1601","452","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1602","447","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1603","447","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1604","445","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1605","445","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1606","444","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1607","444","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1608","442","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1609","442","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1610","441","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1611","441","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1612","440","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1613","440","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1614","439","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1615","439","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1616","438","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1617","438","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1618","433","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1619","433","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1620","432","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1621","432","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1753","536","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1739","521","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1740","521","_wp_trash_meta_time","1348196615");
INSERT INTO wp_postmeta VALUES("1741","511","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1742","511","_wp_trash_meta_time","1348196615");
INSERT INTO wp_postmeta VALUES("1743","507","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1744","507","_wp_trash_meta_time","1348196615");
INSERT INTO wp_postmeta VALUES("1745","501","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1746","501","_wp_trash_meta_time","1348196615");
INSERT INTO wp_postmeta VALUES("1747","497","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1748","497","_wp_trash_meta_time","1348196615");
INSERT INTO wp_postmeta VALUES("1749","491","_menu_order","a:28:{i:524;s:1:\"0\";i:523;s:1:\"1\";i:522;s:1:\"2\";i:520;s:1:\"3\";i:519;s:1:\"4\";i:518;s:1:\"5\";i:517;s:1:\"6\";i:516;s:1:\"7\";i:515;s:1:\"8\";i:514;s:1:\"9\";i:513;s:2:\"10\";i:512;s:2:\"11\";i:510;s:2:\"12\";i:509;s:2:\"13\";i:508;s:2:\"14\";i:506;s:2:\"15\";i:505;s:2:\"16\";i:504;s:2:\"17\";i:503;s:2:\"18\";i:502;s:2:\"19\";i:500;s:2:\"20\";i:499;s:2:\"21\";i:498;s:2:\"22\";i:496;s:2:\"23\";i:495;s:2:\"24\";i:494;s:2:\"25\";i:493;s:2:\"26\";i:492;s:2:\"27\";}");
INSERT INTO wp_postmeta VALUES("1750","757","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1751","757","_wp_trash_meta_time","1348196837");
INSERT INTO wp_postmeta VALUES("1752","748","_menu_order","a:8:{i:756;s:1:\"0\";i:755;s:1:\"1\";i:754;s:1:\"2\";i:753;s:1:\"3\";i:752;s:1:\"4\";i:751;s:1:\"5\";i:750;s:1:\"6\";i:749;s:1:\"7\";}");
INSERT INTO wp_postmeta VALUES("1622","431","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1623","431","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1624","426","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1625","426","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1626","425","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1627","425","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1628","422","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1629","422","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1630","421","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1631","421","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1632","419","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1633","419","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1634","415","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1635","415","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1636","414","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1637","414","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1638","412","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1639","412","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1640","411","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1641","411","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1642","410","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1643","410","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1644","409","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1645","409","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1646","408","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1647","408","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1648","407","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1649","407","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1650","406","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1651","406","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1652","404","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1653","404","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1654","403","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1655","403","_wp_trash_meta_time","1348187155");
INSERT INTO wp_postmeta VALUES("1656","402","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1657","402","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1658","401","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1659","401","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1660","400","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1661","400","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1662","398","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1663","398","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1664","396","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1665","396","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1666","395","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1667","395","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1668","394","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1669","394","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1670","393","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1671","393","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1672","392","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1673","392","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1674","391","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1675","391","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1676","390","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1677","390","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1678","389","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1679","389","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1680","388","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1681","388","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1682","387","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1683","387","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1684","386","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1685","386","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1686","385","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1687","385","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1688","382","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1689","382","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1690","381","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1691","381","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1692","380","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1693","380","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1694","379","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1695","379","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1696","377","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1697","377","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1698","374","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1699","374","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1700","372","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1701","372","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1702","371","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1703","371","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1704","370","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1705","370","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1706","369","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1707","369","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1708","368","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1709","368","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1710","367","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1711","367","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1712","366","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1713","366","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1714","365","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1715","365","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1716","364","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1717","364","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1718","361","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1719","361","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1720","360","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1721","360","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1722","358","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1723","358","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1724","355","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1725","355","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1726","352","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1727","352","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1728","350","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1729","350","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1730","349","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1731","349","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1732","347","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1733","347","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1734","346","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1735","346","_wp_trash_meta_time","1348187156");
INSERT INTO wp_postmeta VALUES("1736","345","_menu_order","a:39:{i:451;s:1:\"0\";i:450;s:1:\"1\";i:449;s:1:\"2\";i:448;s:1:\"3\";i:446;s:1:\"4\";i:443;s:1:\"5\";i:437;s:1:\"6\";i:436;s:1:\"7\";i:435;s:1:\"8\";i:434;s:1:\"9\";i:430;s:2:\"10\";i:429;s:2:\"11\";i:428;s:2:\"12\";i:427;s:2:\"13\";i:424;s:2:\"14\";i:423;s:2:\"15\";i:420;s:2:\"16\";i:418;s:2:\"17\";i:417;s:2:\"18\";i:416;s:2:\"19\";i:413;s:2:\"20\";i:405;s:2:\"21\";i:399;s:2:\"22\";i:397;s:2:\"23\";i:384;s:2:\"24\";i:383;s:2:\"25\";i:378;s:2:\"26\";i:376;s:2:\"27\";i:375;s:2:\"28\";i:373;s:2:\"29\";i:363;s:2:\"30\";i:362;s:2:\"31\";i:359;s:2:\"32\";i:357;s:2:\"33\";i:356;s:2:\"34\";i:354;s:2:\"35\";i:353;s:2:\"36\";i:351;s:2:\"37\";i:348;s:2:\"38\";}");
INSERT INTO wp_postmeta VALUES("1737","765","_wp_attached_file","2012/09/LivingImageBg.jpg");
INSERT INTO wp_postmeta VALUES("1738","765","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:3:\"900\";s:14:\"hwstring_small\";s:23:\"height=\'80\' width=\'128\'\";s:4:\"file\";s:25:\"2012/09/LivingImageBg.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:25:\"LivingImageBg-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:25:\"LivingImageBg-300x187.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"187\";}s:5:\"large\";a:3:{s:4:\"file\";s:26:\"LivingImageBg-1024x640.jpg\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"640\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:25:\"LivingImageBg-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:25:\"LivingImageBg-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:25:\"LivingImageBg-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:25:\"LivingImageBg-635x396.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"396\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:25:\"LivingImageBg-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:25:\"LivingImageBg-410x256.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"256\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1754","536","_wp_trash_meta_time","1348196987");
INSERT INTO wp_postmeta VALUES("1755","534","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1756","534","_wp_trash_meta_time","1348196987");
INSERT INTO wp_postmeta VALUES("1757","301","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1758","301","_wp_trash_meta_time","1348201554");
INSERT INTO wp_postmeta VALUES("1759","297","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1760","297","_wp_trash_meta_time","1348201554");
INSERT INTO wp_postmeta VALUES("1761","295","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1762","295","_wp_trash_meta_time","1348201554");
INSERT INTO wp_postmeta VALUES("1763","294","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1764","294","_wp_trash_meta_time","1348201554");
INSERT INTO wp_postmeta VALUES("1765","291","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1766","291","_wp_trash_meta_time","1348201554");
INSERT INTO wp_postmeta VALUES("1767","290","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1768","290","_wp_trash_meta_time","1348201554");
INSERT INTO wp_postmeta VALUES("1769","287","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1770","287","_wp_trash_meta_time","1348201554");
INSERT INTO wp_postmeta VALUES("1771","285","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1772","285","_wp_trash_meta_time","1348201554");
INSERT INTO wp_postmeta VALUES("1773","280","_menu_order","a:18:{i:307;s:1:\"0\";i:306;s:1:\"1\";i:305;s:1:\"2\";i:304;s:1:\"3\";i:303;s:1:\"4\";i:302;s:1:\"5\";i:300;s:1:\"6\";i:299;s:1:\"7\";i:298;s:1:\"8\";i:296;s:1:\"9\";i:293;s:2:\"10\";i:292;s:2:\"11\";i:289;s:2:\"12\";i:288;s:2:\"13\";i:286;s:2:\"14\";i:284;s:2:\"15\";i:283;s:2:\"16\";i:282;s:2:\"17\";}");
INSERT INTO wp_postmeta VALUES("1774","746","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1775","746","_wp_trash_meta_time","1348201695");
INSERT INTO wp_postmeta VALUES("1776","740","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1777","740","_wp_trash_meta_time","1348201695");
INSERT INTO wp_postmeta VALUES("1778","485","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1779","485","_wp_trash_meta_time","1348201829");
INSERT INTO wp_postmeta VALUES("1780","482","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1781","482","_wp_trash_meta_time","1348201829");
INSERT INTO wp_postmeta VALUES("1782","481","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1783","481","_wp_trash_meta_time","1348201829");
INSERT INTO wp_postmeta VALUES("1784","476","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1785","476","_wp_trash_meta_time","1348201829");
INSERT INTO wp_postmeta VALUES("1786","474","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1787","474","_wp_trash_meta_time","1348201829");
INSERT INTO wp_postmeta VALUES("1788","470","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1789","470","_wp_trash_meta_time","1348201829");
INSERT INTO wp_postmeta VALUES("1790","467","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1791","467","_wp_trash_meta_time","1348201829");
INSERT INTO wp_postmeta VALUES("1792","466","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1793","466","_wp_trash_meta_time","1348201829");
INSERT INTO wp_postmeta VALUES("1794","465","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1795","465","_wp_trash_meta_time","1348201829");
INSERT INTO wp_postmeta VALUES("1796","463","_menu_order","a:17:{i:489;s:1:\"0\";i:488;s:1:\"1\";i:487;s:1:\"2\";i:486;s:1:\"3\";i:484;s:1:\"4\";i:483;s:1:\"5\";i:480;s:1:\"6\";i:479;s:1:\"7\";i:478;s:1:\"8\";i:477;s:1:\"9\";i:475;s:2:\"10\";i:473;s:2:\"11\";i:472;s:2:\"12\";i:471;s:2:\"13\";i:469;s:2:\"14\";i:468;s:2:\"15\";i:464;s:2:\"16\";}");
INSERT INTO wp_postmeta VALUES("1797","720","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1798","720","_wp_trash_meta_time","1348201974");
INSERT INTO wp_postmeta VALUES("1799","719","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("1800","719","_wp_trash_meta_time","1348201974");
INSERT INTO wp_postmeta VALUES("1801","718","_menu_order","a:12:{i:732;s:1:\"0\";i:731;s:1:\"1\";i:730;s:1:\"2\";i:729;s:1:\"3\";i:728;s:1:\"4\";i:727;s:1:\"5\";i:726;s:1:\"6\";i:725;s:1:\"7\";i:724;s:1:\"8\";i:723;s:1:\"9\";i:722;s:2:\"10\";i:721;s:2:\"11\";}");
INSERT INTO wp_postmeta VALUES("1922","845","_edit_lock","1349920880:1");
INSERT INTO wp_postmeta VALUES("1923","845","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("1914","838","_wp_attached_file","2012/09/post1.jpg");
INSERT INTO wp_postmeta VALUES("1915","838","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"229\";s:6:\"height\";s:3:\"145\";s:14:\"hwstring_small\";s:23:\"height=\'81\' width=\'128\'\";s:4:\"file\";s:17:\"2012/09/post1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:17:\"post1-150x145.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"145\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:17:\"post1-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:17:\"post1-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1916","640","_thumbnail_id","838");
INSERT INTO wp_postmeta VALUES("1817","775","_edit_lock","1348210630:1");
INSERT INTO wp_postmeta VALUES("1843","789","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1844","789","_edit_lock","1348214167:1");
INSERT INTO wp_postmeta VALUES("1845","789","_gallery_type","");
INSERT INTO wp_postmeta VALUES("1862","798","_gallery_type","");
INSERT INTO wp_postmeta VALUES("1861","798","_edit_last","1");
INSERT INTO wp_postmeta VALUES("2172","984","_gallery_type","");
INSERT INTO wp_postmeta VALUES("1857","73","_wp_page_template","template-gallery-4.php");
INSERT INTO wp_postmeta VALUES("1858","73","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("1859","73","_wp_trash_meta_time","1348214527");
INSERT INTO wp_postmeta VALUES("1863","798","_edit_lock","1348216140:1");
INSERT INTO wp_postmeta VALUES("1872","798","_menu_order","a:4:{i:802;s:1:\"0\";i:801;s:1:\"1\";i:800;s:1:\"2\";i:799;s:1:\"3\";}");
INSERT INTO wp_postmeta VALUES("1873","77","page_bg_gallery_id","1128");
INSERT INTO wp_postmeta VALUES("1874","803","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1875","803","_gallery_type","");
INSERT INTO wp_postmeta VALUES("1876","803","_edit_lock","1348216157:1");
INSERT INTO wp_postmeta VALUES("1899","81","page_bg_gallery_id","1086");
INSERT INTO wp_postmeta VALUES("1903","583","page_bg_gallery_id","643");
INSERT INTO wp_postmeta VALUES("1904","580","page_bg_gallery_id","643");
INSERT INTO wp_postmeta VALUES("1911","18","page_bg_gallery_id","643");
INSERT INTO wp_postmeta VALUES("1924","845","page_bg_gallery_id","643");
INSERT INTO wp_postmeta VALUES("1921","845","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1925","845","_wp_page_template","page_f.php");
INSERT INTO wp_postmeta VALUES("1926","862","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1942","866","_menu_item_type","taxonomy");
INSERT INTO wp_postmeta VALUES("1929","862","_wp_page_template","page_f.php");
INSERT INTO wp_postmeta VALUES("1930","862","_edit_lock","1348563782:1");
INSERT INTO wp_postmeta VALUES("1959","880","_wp_page_template","template-gallery-flip.php");
INSERT INTO wp_postmeta VALUES("1958","880","page_bg_gallery_id","1054");
INSERT INTO wp_postmeta VALUES("1957","880","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("1956","880","_edit_lock","1349920716:1");
INSERT INTO wp_postmeta VALUES("1955","880","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1940","862","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("1941","862","_wp_trash_meta_time","1348617411");
INSERT INTO wp_postmeta VALUES("1943","866","_menu_item_menu_item_parent","0");
INSERT INTO wp_postmeta VALUES("1944","866","_menu_item_object_id","4");
INSERT INTO wp_postmeta VALUES("1945","866","_menu_item_object","category");
INSERT INTO wp_postmeta VALUES("1946","866","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("1947","866","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("1948","866","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("1949","866","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("1960","882","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("1961","882","_menu_item_menu_item_parent","27");
INSERT INTO wp_postmeta VALUES("1962","882","_menu_item_object_id","880");
INSERT INTO wp_postmeta VALUES("1963","882","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("1964","882","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("1965","882","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("1966","882","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("1967","882","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("1974","789","_wp_trash_meta_time","1348711008");
INSERT INTO wp_postmeta VALUES("1975","697","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("1976","697","_wp_trash_meta_time","1348711008");
INSERT INTO wp_postmeta VALUES("1977","124","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("1978","124","_wp_trash_meta_time","1348711008");
INSERT INTO wp_postmeta VALUES("1979","97","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("1980","97","_wp_trash_meta_time","1348711008");
INSERT INTO wp_postmeta VALUES("1981","896","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1982","896","_gallery_type","");
INSERT INTO wp_postmeta VALUES("1983","896","_edit_lock","1349399008:1");
INSERT INTO wp_postmeta VALUES("1984","897","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1985","897","_gallery_type","");
INSERT INTO wp_postmeta VALUES("1986","897","_edit_lock","1348711017:1");
INSERT INTO wp_postmeta VALUES("1989","899","_wp_attached_file","2012/09/ChildrensPhotographer0271.jpg");
INSERT INTO wp_postmeta VALUES("1990","899","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:37:\"2012/09/ChildrensPhotographer0271.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0271-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0271-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0271-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0271-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0271-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0271-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0271-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0271-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("1993","895","_edit_last","1");
INSERT INTO wp_postmeta VALUES("1994","895","_edit_lock","1349920800:1");
INSERT INTO wp_postmeta VALUES("1997","895","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("1998","895","_wp_page_template","template-gallery-flip.php");
INSERT INTO wp_postmeta VALUES("2001","904","_wp_attached_file","2012/09/ChildrensPhotographer0441.jpg");
INSERT INTO wp_postmeta VALUES("2002","904","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"532\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'63\'\";s:4:\"file\";s:37:\"2012/09/ChildrensPhotographer0441.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0441-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0441-199x300.jpg\";s:5:\"width\";s:3:\"199\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0441-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0441-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0441-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0441-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0441-410x616.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"616\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1242623038\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2021","915","_wp_attached_file","2012/09/ChildrensPhotographer0561.jpg");
INSERT INTO wp_postmeta VALUES("2022","915","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:37:\"2012/09/ChildrensPhotographer0561.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0561-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0561-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0561-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0561-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0561-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0561-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0561-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0561-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2055","932","_wp_attached_file","2012/09/ChildrensPhotographer0821.jpg");
INSERT INTO wp_postmeta VALUES("2056","932","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:37:\"2012/09/ChildrensPhotographer0821.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0821-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0821-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0821-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0821-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0821-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0821-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0821-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0821-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2061","935","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("2062","935","_menu_item_menu_item_parent","27");
INSERT INTO wp_postmeta VALUES("2063","935","_menu_item_object_id","895");
INSERT INTO wp_postmeta VALUES("2064","935","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("2065","935","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("2066","935","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("2067","935","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("2068","935","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("2070","936","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("2071","936","_menu_item_menu_item_parent","27");
INSERT INTO wp_postmeta VALUES("2072","936","_menu_item_object_id","893");
INSERT INTO wp_postmeta VALUES("2073","936","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("2074","936","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("2075","936","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("2076","936","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("2077","936","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("2079","937","_wp_attached_file","2012/09/ChildrensPhotographer0861.jpg");
INSERT INTO wp_postmeta VALUES("2080","937","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"532\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'63\'\";s:4:\"file\";s:37:\"2012/09/ChildrensPhotographer0861.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0861-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0861-199x300.jpg\";s:5:\"width\";s:3:\"199\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0861-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0861-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0861-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0861-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0861-410x616.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"616\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1257206310\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"125\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2083","939","_wp_attached_file","2012/09/ChildrensPhotographer0891.jpg");
INSERT INTO wp_postmeta VALUES("2084","939","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"531\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'63\'\";s:4:\"file\";s:37:\"2012/09/ChildrensPhotographer0891.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0891-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0891-199x300.jpg\";s:5:\"width\";s:3:\"199\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0891-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0891-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0891-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0891-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0891-410x617.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"617\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D2Xs\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1176890964\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"150\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2093","944","_wp_attached_file","2012/09/ChildrensPhotographer1001.jpg");
INSERT INTO wp_postmeta VALUES("2094","944","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:37:\"2012/09/ChildrensPhotographer1001.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1001-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1001-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1001-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1001-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1001-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1001-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1001-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1001-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1247568496\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2101","948","_wp_attached_file","2012/09/ChildrensPhotographer1041.jpg");
INSERT INTO wp_postmeta VALUES("2102","948","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"798\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:37:\"2012/09/ChildrensPhotographer1041.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1041-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1041-300x199.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"199\";}s:5:\"large\";a:3:{s:4:\"file\";s:38:\"ChildrensPhotographer1041-1024x680.jpg\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"680\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1041-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1041-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1041-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1041-635x422.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"422\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1041-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1041-410x272.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"272\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2107","895","page_bg_gallery_id","1070");
INSERT INTO wp_postmeta VALUES("2112","954","_wp_attached_file","2012/09/ChildrensPhotographer1121.jpg");
INSERT INTO wp_postmeta VALUES("2113","954","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:37:\"2012/09/ChildrensPhotographer1121.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1121-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1121-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1121-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1121-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1121-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1121-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1121-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1121-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2118","957","_wp_attached_file","2012/09/ChildrensPhotographer1201.jpg");
INSERT INTO wp_postmeta VALUES("2119","957","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:37:\"2012/09/ChildrensPhotographer1201.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1201-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1201-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1201-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1201-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1201-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1201-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1201-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer1201-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2124","960","_wp_attached_file","2012/09/BabyPhotographer061.jpg");
INSERT INTO wp_postmeta VALUES("2125","960","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:31:\"2012/09/BabyPhotographer061.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer061-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer061-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer061-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer061-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer061-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer061-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer061-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer061-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2130","963","_wp_attached_file","2012/09/BabyPhotographer111.jpg");
INSERT INTO wp_postmeta VALUES("2131","963","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:31:\"2012/09/BabyPhotographer111.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer111-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer111-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer111-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer111-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer111-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer111-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer111-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer111-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2134","965","_wp_attached_file","2012/09/BabyPhotographer141.jpg");
INSERT INTO wp_postmeta VALUES("2135","965","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:31:\"2012/09/BabyPhotographer141.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer141-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer141-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer141-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer141-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer141-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer141-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer141-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer141-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2136","966","_wp_attached_file","2012/09/BabyPhotographer171.jpg");
INSERT INTO wp_postmeta VALUES("2137","966","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:31:\"2012/09/BabyPhotographer171.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer171-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer171-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer171-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer171-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer171-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer171-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer171-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:31:\"BabyPhotographer171-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2152","974","_wp_attached_file","2012/09/ChildrensPhotographer0161.jpg");
INSERT INTO wp_postmeta VALUES("2153","974","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:37:\"2012/09/ChildrensPhotographer0161.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0161-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0161-240x300.jpg\";s:5:\"width\";s:3:\"240\";s:6:\"height\";s:3:\"300\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0161-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0161-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0161-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0161-635x793.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"793\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0161-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0161-410x512.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"512\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2158","977","_wp_attached_file","2012/09/ChildrensPhotographer0211.jpg");
INSERT INTO wp_postmeta VALUES("2159","977","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:37:\"2012/09/ChildrensPhotographer0211.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0211-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0211-300x240.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"240\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0211-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0211-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0211-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0211-635x508.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"508\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0211-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:37:\"ChildrensPhotographer0211-410x328.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"328\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"LIVING IMAGE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2162","895","page_gallery_id","1070");
INSERT INTO wp_postmeta VALUES("2163","71","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2164","71","_wp_trash_meta_time","1348712814");
INSERT INTO wp_postmeta VALUES("2196","880","page_gallery_id","1054");
INSERT INTO wp_postmeta VALUES("2205","1001","_edit_last","1");
INSERT INTO wp_postmeta VALUES("2207","1001","snapEdIT","1");
INSERT INTO wp_postmeta VALUES("2208","1001","_gallery_type","");
INSERT INTO wp_postmeta VALUES("2209","1001","_edit_lock","1348791219:1");
INSERT INTO wp_postmeta VALUES("2220","893","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("2221","893","page_bg_gallery_id","1092");
INSERT INTO wp_postmeta VALUES("2222","893","page_gallery_id","1092");
INSERT INTO wp_postmeta VALUES("2228","640","snapEdIT","1");
INSERT INTO wp_postmeta VALUES("2229","552","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("2230","552","page_bg_gallery_id","643");
INSERT INTO wp_postmeta VALUES("2231","550","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("2232","550","page_bg_gallery_id","643");
INSERT INTO wp_postmeta VALUES("2233","547","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("2234","547","page_bg_gallery_id","643");
INSERT INTO wp_postmeta VALUES("2235","1035","_edit_last","1");
INSERT INTO wp_postmeta VALUES("2236","1035","_edit_lock","1349920900:1");
INSERT INTO wp_postmeta VALUES("2237","1035","page_bg_style","Slideshow");
INSERT INTO wp_postmeta VALUES("2238","1035","_wp_page_template","template-gallery-f.php");
INSERT INTO wp_postmeta VALUES("2239","1037","_menu_item_type","post_type");
INSERT INTO wp_postmeta VALUES("2240","1037","_menu_item_menu_item_parent","0");
INSERT INTO wp_postmeta VALUES("2241","1037","_menu_item_object_id","1035");
INSERT INTO wp_postmeta VALUES("2242","1037","_menu_item_object","page");
INSERT INTO wp_postmeta VALUES("2243","1037","_menu_item_target","");
INSERT INTO wp_postmeta VALUES("2244","1037","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO wp_postmeta VALUES("2245","1037","_menu_item_xfn","");
INSERT INTO wp_postmeta VALUES("2246","1037","_menu_item_url","");
INSERT INTO wp_postmeta VALUES("2248","977","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2249","977","_wp_trash_meta_time","1349399102");
INSERT INTO wp_postmeta VALUES("2250","974","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2251","974","_wp_trash_meta_time","1349399102");
INSERT INTO wp_postmeta VALUES("2252","966","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2253","966","_wp_trash_meta_time","1349399102");
INSERT INTO wp_postmeta VALUES("2254","965","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2255","965","_wp_trash_meta_time","1349399102");
INSERT INTO wp_postmeta VALUES("2256","963","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2257","963","_wp_trash_meta_time","1349399102");
INSERT INTO wp_postmeta VALUES("2258","960","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2259","960","_wp_trash_meta_time","1349399102");
INSERT INTO wp_postmeta VALUES("2260","957","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2261","957","_wp_trash_meta_time","1349399102");
INSERT INTO wp_postmeta VALUES("2262","954","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2263","954","_wp_trash_meta_time","1349399102");
INSERT INTO wp_postmeta VALUES("2264","948","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2265","948","_wp_trash_meta_time","1349399102");
INSERT INTO wp_postmeta VALUES("2266","944","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2267","944","_wp_trash_meta_time","1349399102");
INSERT INTO wp_postmeta VALUES("2268","939","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2269","939","_wp_trash_meta_time","1349399102");
INSERT INTO wp_postmeta VALUES("2270","937","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2271","937","_wp_trash_meta_time","1349399102");
INSERT INTO wp_postmeta VALUES("2272","932","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2273","932","_wp_trash_meta_time","1349399102");
INSERT INTO wp_postmeta VALUES("2274","915","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2275","915","_wp_trash_meta_time","1349399102");
INSERT INTO wp_postmeta VALUES("2276","904","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2277","904","_wp_trash_meta_time","1349399102");
INSERT INTO wp_postmeta VALUES("2278","899","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2279","899","_wp_trash_meta_time","1349399102");
INSERT INTO wp_postmeta VALUES("2280","448","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2281","448","_wp_trash_meta_time","1349399250");
INSERT INTO wp_postmeta VALUES("2282","428","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2283","428","_wp_trash_meta_time","1349399250");
INSERT INTO wp_postmeta VALUES("2284","424","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2285","424","_wp_trash_meta_time","1349399250");
INSERT INTO wp_postmeta VALUES("2286","418","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2287","418","_wp_trash_meta_time","1349399250");
INSERT INTO wp_postmeta VALUES("2288","375","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2289","375","_wp_trash_meta_time","1349399250");
INSERT INTO wp_postmeta VALUES("2290","356","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2291","356","_wp_trash_meta_time","1349399250");
INSERT INTO wp_postmeta VALUES("2292","1038","_edit_last","1");
INSERT INTO wp_postmeta VALUES("2294","1038","snapEdIT","1");
INSERT INTO wp_postmeta VALUES("2295","1038","portfolio_type","Image");
INSERT INTO wp_postmeta VALUES("2296","1038","_edit_lock","1349399347:1");
INSERT INTO wp_postmeta VALUES("2297","1039","_edit_last","1");
INSERT INTO wp_postmeta VALUES("2299","1039","snapEdIT","1");
INSERT INTO wp_postmeta VALUES("2300","1039","_gallery_type","");
INSERT INTO wp_postmeta VALUES("2301","1039","_edit_lock","1349835519:1");
INSERT INTO wp_postmeta VALUES("2302","1040","_wp_attached_file","2012/10/6th-slide.jpg");
INSERT INTO wp_postmeta VALUES("2303","1040","_wp_attachment_metadata","a:7:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/6th-slide.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"6th-slide-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:10:\"wp_smushit\";s:28:\"Reduced by 5.7% (412&nbsp;B)\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"6th-slide-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";s:10:\"wp_smushit\";s:28:\"Reduced by 5.8% (784&nbsp;B)\";}s:9:\"gallery_2\";a:4:{s:4:\"file\";s:21:\"6th-slide-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";s:10:\"wp_smushit\";s:29:\"Reduced by 5.9% (1.1&nbsp;KB)\";}s:9:\"gallery_3\";a:4:{s:4:\"file\";s:21:\"6th-slide-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";s:10:\"wp_smushit\";s:28:\"Reduced by 6.4% (537&nbsp;B)\";}s:9:\"gallery_4\";a:4:{s:4:\"file\";s:21:\"6th-slide-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";s:10:\"wp_smushit\";s:28:\"Reduced by 5.5% (305&nbsp;B)\";}s:9:\"gallery_a\";a:4:{s:4:\"file\";s:21:\"6th-slide-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";s:10:\"wp_smushit\";s:29:\"Reduced by 5.1% (2.4&nbsp;KB)\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:21:\"6th-slide-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";s:10:\"wp_smushit\";s:29:\"Reduced by 5.3% (1.7&nbsp;KB)\";}s:4:\"blog\";a:4:{s:4:\"file\";s:21:\"6th-slide-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";s:10:\"wp_smushit\";s:29:\"Reduced by 5.6% (1.2&nbsp;KB)\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}s:10:\"wp_smushit\";s:28:\"Reduced by 1.1% (807&nbsp;B)\";}");
INSERT INTO wp_postmeta VALUES("2304","1041","_wp_attached_file","2012/10/7th-slide.jpg");
INSERT INTO wp_postmeta VALUES("2305","1041","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/7th-slide.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"7th-slide-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"7th-slide-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:21:\"7th-slide-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:21:\"7th-slide-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:21:\"7th-slide-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:21:\"7th-slide-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:21:\"7th-slide-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:21:\"7th-slide-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2306","1042","_wp_attached_file","2012/10/1st-slide.jpg");
INSERT INTO wp_postmeta VALUES("2307","1042","_wp_attachment_metadata","a:7:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/1st-slide.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"1st-slide-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:10:\"wp_smushit\";s:28:\"Reduced by 5.2% (358&nbsp;B)\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"1st-slide-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";s:10:\"wp_smushit\";s:28:\"Reduced by 5.9% (743&nbsp;B)\";}s:9:\"gallery_2\";a:4:{s:4:\"file\";s:21:\"1st-slide-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";s:10:\"wp_smushit\";s:28:\"Reduced by 5.3% (971&nbsp;B)\";}s:9:\"gallery_3\";a:4:{s:4:\"file\";s:21:\"1st-slide-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";s:10:\"wp_smushit\";s:28:\"Reduced by 6.6% (535&nbsp;B)\";}s:9:\"gallery_4\";a:4:{s:4:\"file\";s:21:\"1st-slide-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";s:10:\"wp_smushit\";s:28:\"Reduced by 7.3% (409&nbsp;B)\";}s:9:\"gallery_a\";a:4:{s:4:\"file\";s:21:\"1st-slide-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";s:10:\"wp_smushit\";s:29:\"Reduced by 4.3% (1.6&nbsp;KB)\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:21:\"1st-slide-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";s:10:\"wp_smushit\";s:29:\"Reduced by 4.7% (1.3&nbsp;KB)\";}s:4:\"blog\";a:4:{s:4:\"file\";s:21:\"1st-slide-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";s:10:\"wp_smushit\";s:27:\"Reduced by 5.4% (1&nbsp;KB)\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}s:10:\"wp_smushit\";s:10:\"No savings\";}");
INSERT INTO wp_postmeta VALUES("2308","1043","_wp_attached_file","2012/10/2nd-slide.jpg");
INSERT INTO wp_postmeta VALUES("2309","1043","_wp_attachment_metadata","a:7:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/2nd-slide.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"2nd-slide-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:10:\"wp_smushit\";s:28:\"Reduced by 9.0% (655&nbsp;B)\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"2nd-slide-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";s:10:\"wp_smushit\";s:29:\"Reduced by 8.7% (1.1&nbsp;KB)\";}s:9:\"gallery_2\";a:4:{s:4:\"file\";s:21:\"2nd-slide-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";s:10:\"wp_smushit\";s:29:\"Reduced by 7.8% (1.4&nbsp;KB)\";}s:9:\"gallery_3\";a:4:{s:4:\"file\";s:21:\"2nd-slide-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";s:10:\"wp_smushit\";s:28:\"Reduced by 8.8% (724&nbsp;B)\";}s:9:\"gallery_4\";a:4:{s:4:\"file\";s:21:\"2nd-slide-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";s:10:\"wp_smushit\";s:28:\"Reduced by 9.1% (522&nbsp;B)\";}s:9:\"gallery_a\";a:4:{s:4:\"file\";s:21:\"2nd-slide-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";s:10:\"wp_smushit\";s:29:\"Reduced by 7.5% (2.9&nbsp;KB)\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:21:\"2nd-slide-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";s:10:\"wp_smushit\";s:29:\"Reduced by 7.5% (2.2&nbsp;KB)\";}s:4:\"blog\";a:4:{s:4:\"file\";s:21:\"2nd-slide-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";s:10:\"wp_smushit\";s:29:\"Reduced by 8.1% (1.6&nbsp;KB)\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}s:10:\"wp_smushit\";s:29:\"Reduced by 2.4% (1.4&nbsp;KB)\";}");
INSERT INTO wp_postmeta VALUES("2310","1044","_wp_attached_file","2012/10/3rd-slide.jpg");
INSERT INTO wp_postmeta VALUES("2311","1044","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/3rd-slide.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"3rd-slide-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"3rd-slide-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:21:\"3rd-slide-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:21:\"3rd-slide-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:21:\"3rd-slide-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:21:\"3rd-slide-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:21:\"3rd-slide-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:21:\"3rd-slide-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2312","1045","_wp_attached_file","2012/10/4th-slide.jpg");
INSERT INTO wp_postmeta VALUES("2313","1045","_wp_attachment_metadata","a:7:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/4th-slide.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"4th-slide-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:10:\"wp_smushit\";s:28:\"Reduced by 6.5% (243&nbsp;B)\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"4th-slide-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";s:10:\"wp_smushit\";s:28:\"Reduced by 7.3% (455&nbsp;B)\";}s:9:\"gallery_2\";a:4:{s:4:\"file\";s:21:\"4th-slide-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";s:10:\"wp_smushit\";s:28:\"Reduced by 7.5% (680&nbsp;B)\";}s:9:\"gallery_3\";a:4:{s:4:\"file\";s:21:\"4th-slide-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";s:10:\"wp_smushit\";s:28:\"Reduced by 7.4% (330&nbsp;B)\";}s:9:\"gallery_4\";a:4:{s:4:\"file\";s:21:\"4th-slide-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";s:10:\"wp_smushit\";s:28:\"Reduced by 7.0% (224&nbsp;B)\";}s:9:\"gallery_a\";a:4:{s:4:\"file\";s:21:\"4th-slide-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";s:10:\"wp_smushit\";s:29:\"Reduced by 8.4% (1.5&nbsp;KB)\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:21:\"4th-slide-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";s:10:\"wp_smushit\";s:29:\"Reduced by 8.0% (1.1&nbsp;KB)\";}s:4:\"blog\";a:4:{s:4:\"file\";s:21:\"4th-slide-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";s:10:\"wp_smushit\";s:28:\"Reduced by 7.8% (741&nbsp;B)\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}s:10:\"wp_smushit\";s:28:\"Reduced by 3.2% (983&nbsp;B)\";}");
INSERT INTO wp_postmeta VALUES("2314","1046","_wp_attached_file","2012/10/5th-slide.jpg");
INSERT INTO wp_postmeta VALUES("2315","1046","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/5th-slide.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"5th-slide-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"5th-slide-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:21:\"5th-slide-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:21:\"5th-slide-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:21:\"5th-slide-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:21:\"5th-slide-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:21:\"5th-slide-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:21:\"5th-slide-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2316","1035","page_bg_gallery_id","1039");
INSERT INTO wp_postmeta VALUES("2317","1035","page_gallery_id","1039");
INSERT INTO wp_postmeta VALUES("2320","803","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2321","803","_wp_trash_meta_time","1349748065");
INSERT INTO wp_postmeta VALUES("2322","798","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2323","798","_wp_trash_meta_time","1349748065");
INSERT INTO wp_postmeta VALUES("2324","775","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2325","775","_wp_trash_meta_time","1349748065");
INSERT INTO wp_postmeta VALUES("2326","748","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2327","748","_wp_trash_meta_time","1349748065");
INSERT INTO wp_postmeta VALUES("2328","736","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2329","736","_wp_trash_meta_time","1349748065");
INSERT INTO wp_postmeta VALUES("2330","718","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2331","718","_wp_trash_meta_time","1349748065");
INSERT INTO wp_postmeta VALUES("2332","1001","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2333","1001","_wp_trash_meta_time","1349748114");
INSERT INTO wp_postmeta VALUES("2334","984","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2335","984","_wp_trash_meta_time","1349748114");
INSERT INTO wp_postmeta VALUES("2336","896","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2337","896","_wp_trash_meta_time","1349748114");
INSERT INTO wp_postmeta VALUES("2338","759","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2339","759","_wp_trash_meta_time","1349748114");
INSERT INTO wp_postmeta VALUES("2340","527","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2341","527","_wp_trash_meta_time","1349748114");
INSERT INTO wp_postmeta VALUES("2342","491","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2343","491","_wp_trash_meta_time","1349748114");
INSERT INTO wp_postmeta VALUES("2344","463","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2345","463","_wp_trash_meta_time","1349748114");
INSERT INTO wp_postmeta VALUES("2346","345","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2347","345","_wp_trash_meta_time","1349748114");
INSERT INTO wp_postmeta VALUES("2348","280","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2349","280","_wp_trash_meta_time","1349748115");
INSERT INTO wp_postmeta VALUES("2350","260","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2351","260","_wp_trash_meta_time","1349748115");
INSERT INTO wp_postmeta VALUES("2352","32","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2353","32","_wp_trash_meta_time","1349757123");
INSERT INTO wp_postmeta VALUES("2354","1046","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2355","1046","_wp_trash_meta_time","1349757142");
INSERT INTO wp_postmeta VALUES("2356","1044","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2357","1044","_wp_trash_meta_time","1349757142");
INSERT INTO wp_postmeta VALUES("2358","1041","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2359","1041","_wp_trash_meta_time","1349757142");
INSERT INTO wp_postmeta VALUES("2360","1054","_edit_last","1");
INSERT INTO wp_postmeta VALUES("2362","1054","snapEdIT","1");
INSERT INTO wp_postmeta VALUES("2363","1054","_gallery_type","");
INSERT INTO wp_postmeta VALUES("2364","1054","_edit_lock","1349832531:1");
INSERT INTO wp_postmeta VALUES("2365","1055","_wp_attached_file","2012/10/dog_03.jpg");
INSERT INTO wp_postmeta VALUES("2366","1055","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:18:\"2012/10/dog_03.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:18:\"dog_03-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:18:\"dog_03-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:18:\"dog_03-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:18:\"dog_03-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:18:\"dog_03-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:18:\"dog_03-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:18:\"dog_03-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:18:\"dog_03-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2367","1056","_wp_attached_file","2012/10/dog_04.jpg");
INSERT INTO wp_postmeta VALUES("2368","1056","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:18:\"2012/10/dog_04.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:18:\"dog_04-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:18:\"dog_04-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:18:\"dog_04-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:18:\"dog_04-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:18:\"dog_04-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:18:\"dog_04-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:18:\"dog_04-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:18:\"dog_04-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2369","1057","_wp_attached_file","2012/10/poodle_01.jpg");
INSERT INTO wp_postmeta VALUES("2370","1057","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/poodle_01.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"poodle_01-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"poodle_01-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:21:\"poodle_01-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:21:\"poodle_01-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:21:\"poodle_01-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:21:\"poodle_01-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:21:\"poodle_01-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:21:\"poodle_01-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2371","1058","_wp_attached_file","2012/10/2nd.jpg");
INSERT INTO wp_postmeta VALUES("2372","1058","_wp_attachment_metadata","a:7:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:15:\"2012/10/2nd.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"2nd-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:10:\"wp_smushit\";s:28:\"Reduced by 8.6% (977&nbsp;B)\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"2nd-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";s:10:\"wp_smushit\";s:29:\"Reduced by 8.8% (1.8&nbsp;KB)\";}s:9:\"gallery_2\";a:4:{s:4:\"file\";s:15:\"2nd-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";s:10:\"wp_smushit\";s:29:\"Reduced by 8.3% (2.4&nbsp;KB)\";}s:9:\"gallery_3\";a:4:{s:4:\"file\";s:15:\"2nd-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";s:10:\"wp_smushit\";s:29:\"Reduced by 9.5% (1.3&nbsp;KB)\";}s:9:\"gallery_4\";a:4:{s:4:\"file\";s:15:\"2nd-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";s:10:\"wp_smushit\";s:28:\"Reduced by 9.3% (830&nbsp;B)\";}s:9:\"gallery_a\";a:4:{s:4:\"file\";s:15:\"2nd-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";s:10:\"wp_smushit\";s:27:\"Reduced by 7.5% (5&nbsp;KB)\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:15:\"2nd-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";s:10:\"wp_smushit\";s:29:\"Reduced by 7.7% (3.7&nbsp;KB)\";}s:4:\"blog\";a:4:{s:4:\"file\";s:15:\"2nd-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";s:10:\"wp_smushit\";s:29:\"Reduced by 8.5% (2.8&nbsp;KB)\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}s:10:\"wp_smushit\";s:27:\"Reduced by 2.1% (2&nbsp;KB)\";}");
INSERT INTO wp_postmeta VALUES("2482","1039","_menu_order","a:7:{i:1065;s:1:\"0\";i:1062;s:1:\"1\";i:1058;s:1:\"2\";i:1045;s:1:\"3\";i:1043;s:1:\"4\";i:1042;s:1:\"5\";i:1040;s:1:\"6\";}");
INSERT INTO wp_postmeta VALUES("2485","1112","_wp_attached_file","2012/10/individual_hansen_00.jpg");
INSERT INTO wp_postmeta VALUES("2486","1112","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:32:\"2012/10/individual_hansen_00.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:32:\"individual_hansen_00-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:32:\"individual_hansen_00-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:32:\"individual_hansen_00-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:32:\"individual_hansen_00-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:32:\"individual_hansen_00-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:32:\"individual_hansen_00-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:32:\"individual_hansen_00-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:32:\"individual_hansen_00-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2375","1060","_wp_attached_file","2012/10/poodle_02.jpg");
INSERT INTO wp_postmeta VALUES("2376","1060","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/poodle_02.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"poodle_02-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"poodle_02-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:21:\"poodle_02-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:21:\"poodle_02-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:21:\"poodle_02-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:21:\"poodle_02-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:21:\"poodle_02-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:21:\"poodle_02-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2531","1127","_wp_attached_file","2012/10/pregnancy_05.jpg");
INSERT INTO wp_postmeta VALUES("2532","1127","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:24:\"2012/10/pregnancy_05.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"pregnancy_05-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"pregnancy_05-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:24:\"pregnancy_05-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:24:\"pregnancy_05-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:24:\"pregnancy_05-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:24:\"pregnancy_05-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:24:\"pregnancy_05-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:24:\"pregnancy_05-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2379","1062","_wp_attached_file","2012/10/5th.jpg");
INSERT INTO wp_postmeta VALUES("2380","1062","_wp_attachment_metadata","a:7:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:15:\"2012/10/5th.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"5th-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:10:\"wp_smushit\";s:28:\"Reduced by 7.0% (343&nbsp;B)\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"5th-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";s:10:\"wp_smushit\";s:28:\"Reduced by 5.4% (382&nbsp;B)\";}s:9:\"gallery_2\";a:4:{s:4:\"file\";s:15:\"5th-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";s:10:\"wp_smushit\";s:28:\"Reduced by 6.3% (674&nbsp;B)\";}s:9:\"gallery_3\";a:4:{s:4:\"file\";s:15:\"5th-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";s:10:\"wp_smushit\";s:28:\"Reduced by 6.1% (312&nbsp;B)\";}s:9:\"gallery_4\";a:4:{s:4:\"file\";s:15:\"5th-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";s:10:\"wp_smushit\";s:28:\"Reduced by 6.2% (234&nbsp;B)\";}s:9:\"gallery_a\";a:4:{s:4:\"file\";s:15:\"5th-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";s:10:\"wp_smushit\";s:29:\"Reduced by 5.8% (1.2&nbsp;KB)\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:15:\"5th-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";s:10:\"wp_smushit\";s:27:\"Reduced by 6.2% (1&nbsp;KB)\";}s:4:\"blog\";a:4:{s:4:\"file\";s:15:\"5th-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";s:10:\"wp_smushit\";s:28:\"Reduced by 5.4% (586&nbsp;B)\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}s:10:\"wp_smushit\";s:28:\"Reduced by 0.8% (284&nbsp;B)\";}");
INSERT INTO wp_postmeta VALUES("2381","1063","_wp_attached_file","2012/10/poodle_03.jpg");
INSERT INTO wp_postmeta VALUES("2382","1063","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/poodle_03.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"poodle_03-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"poodle_03-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:21:\"poodle_03-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:21:\"poodle_03-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:21:\"poodle_03-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:21:\"poodle_03-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:21:\"poodle_03-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:21:\"poodle_03-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2533","1128","_edit_last","1");
INSERT INTO wp_postmeta VALUES("2534","1128","_edit_lock","1349843616:1");
INSERT INTO wp_postmeta VALUES("2536","1128","snapEdIT","1");
INSERT INTO wp_postmeta VALUES("2537","1128","_gallery_type","");
INSERT INTO wp_postmeta VALUES("2538","1129","_wp_attached_file","2012/10/corporate_02.jpg");
INSERT INTO wp_postmeta VALUES("2539","1129","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:24:\"2012/10/corporate_02.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"corporate_02-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"corporate_02-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:24:\"corporate_02-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:24:\"corporate_02-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:24:\"corporate_02-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:24:\"corporate_02-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:24:\"corporate_02-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:24:\"corporate_02-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2385","1065","_wp_attached_file","2012/10/1st.jpg");
INSERT INTO wp_postmeta VALUES("2386","1065","_wp_attachment_metadata","a:7:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:15:\"2012/10/1st.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"1st-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:10:\"wp_smushit\";s:28:\"Reduced by 9.4% (722&nbsp;B)\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1st-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";s:10:\"wp_smushit\";s:29:\"Reduced by 9.8% (1.4&nbsp;KB)\";}s:9:\"gallery_2\";a:4:{s:4:\"file\";s:15:\"1st-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";s:10:\"wp_smushit\";s:30:\"Reduced by 10.0% (1.9&nbsp;KB)\";}s:9:\"gallery_3\";a:4:{s:4:\"file\";s:15:\"1st-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";s:10:\"wp_smushit\";s:28:\"Reduced by 9.8% (914&nbsp;B)\";}s:9:\"gallery_4\";a:4:{s:4:\"file\";s:15:\"1st-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";s:10:\"wp_smushit\";s:28:\"Reduced by 9.7% (621&nbsp;B)\";}s:9:\"gallery_a\";a:4:{s:4:\"file\";s:15:\"1st-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";s:10:\"wp_smushit\";s:29:\"Reduced by 9.2% (3.8&nbsp;KB)\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:15:\"1st-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";s:10:\"wp_smushit\";s:29:\"Reduced by 9.5% (2.8&nbsp;KB)\";}s:4:\"blog\";a:4:{s:4:\"file\";s:15:\"1st-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";s:10:\"wp_smushit\";s:29:\"Reduced by 9.6% (2.1&nbsp;KB)\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}s:10:\"wp_smushit\";s:29:\"Reduced by 3.1% (1.8&nbsp;KB)\";}");
INSERT INTO wp_postmeta VALUES("2387","1066","_wp_attached_file","2012/10/dog_01.jpg");
INSERT INTO wp_postmeta VALUES("2388","1066","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:18:\"2012/10/dog_01.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:18:\"dog_01-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:18:\"dog_01-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:18:\"dog_01-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:18:\"dog_01-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:18:\"dog_01-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:18:\"dog_01-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:18:\"dog_01-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:18:\"dog_01-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2529","1126","_wp_attached_file","2012/10/dog_02.jpg");
INSERT INTO wp_postmeta VALUES("2530","1126","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:18:\"2012/10/dog_02.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:18:\"dog_02-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:18:\"dog_02-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:18:\"dog_02-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:18:\"dog_02-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:18:\"dog_02-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:18:\"dog_02-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:18:\"dog_02-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:18:\"dog_02-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2391","1070","_edit_last","1");
INSERT INTO wp_postmeta VALUES("2393","1070","snapEdIT","1");
INSERT INTO wp_postmeta VALUES("2394","1070","_gallery_type","");
INSERT INTO wp_postmeta VALUES("2395","1070","_edit_lock","1349829851:1");
INSERT INTO wp_postmeta VALUES("2396","1071","_wp_attached_file","2012/10/children_03.jpg");
INSERT INTO wp_postmeta VALUES("2397","1071","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:23:\"2012/10/children_03.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"children_03-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"children_03-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:23:\"children_03-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:23:\"children_03-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:23:\"children_03-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:23:\"children_03-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:23:\"children_03-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:23:\"children_03-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2398","1072","_wp_attached_file","2012/10/children_04.jpg");
INSERT INTO wp_postmeta VALUES("2399","1072","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:23:\"2012/10/children_04.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"children_04-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"children_04-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:23:\"children_04-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:23:\"children_04-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:23:\"children_04-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:23:\"children_04-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:23:\"children_04-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:23:\"children_04-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2400","1073","_wp_attached_file","2012/10/children_05.jpg");
INSERT INTO wp_postmeta VALUES("2401","1073","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:23:\"2012/10/children_05.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"children_05-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"children_05-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:23:\"children_05-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:23:\"children_05-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:23:\"children_05-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:23:\"children_05-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:23:\"children_05-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:23:\"children_05-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2402","1074","_wp_attached_file","2012/10/children_06.jpg");
INSERT INTO wp_postmeta VALUES("2403","1074","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:23:\"2012/10/children_06.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"children_06-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"children_06-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:23:\"children_06-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:23:\"children_06-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:23:\"children_06-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:23:\"children_06-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:23:\"children_06-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:23:\"children_06-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2404","1075","_wp_attached_file","2012/10/children_07.jpg");
INSERT INTO wp_postmeta VALUES("2405","1075","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:23:\"2012/10/children_07.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"children_07-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"children_07-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:23:\"children_07-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:23:\"children_07-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:23:\"children_07-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:23:\"children_07-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:23:\"children_07-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:23:\"children_07-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2406","1076","_wp_attached_file","2012/10/children_01.jpg");
INSERT INTO wp_postmeta VALUES("2407","1076","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:23:\"2012/10/children_01.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"children_01-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"children_01-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:23:\"children_01-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:23:\"children_01-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:23:\"children_01-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:23:\"children_01-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:23:\"children_01-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:23:\"children_01-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2408","1077","_wp_attached_file","2012/10/children_02.jpg");
INSERT INTO wp_postmeta VALUES("2409","1077","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:23:\"2012/10/children_02.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"children_02-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"children_02-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:23:\"children_02-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:23:\"children_02-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:23:\"children_02-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:23:\"children_02-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:23:\"children_02-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:23:\"children_02-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2410","1079","_edit_last","1");
INSERT INTO wp_postmeta VALUES("2412","1079","snapEdIT","1");
INSERT INTO wp_postmeta VALUES("2413","1079","_gallery_type","");
INSERT INTO wp_postmeta VALUES("2414","1079","_edit_lock","1349829687:1");
INSERT INTO wp_postmeta VALUES("2415","1080","_wp_attached_file","2012/10/couple_04.jpg");
INSERT INTO wp_postmeta VALUES("2416","1080","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/couple_04.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"couple_04-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"couple_04-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:21:\"couple_04-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:21:\"couple_04-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:21:\"couple_04-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:21:\"couple_04-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:21:\"couple_04-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:21:\"couple_04-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2417","1081","_wp_attached_file","2012/10/couple_05.jpg");
INSERT INTO wp_postmeta VALUES("2418","1081","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/couple_05.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"couple_05-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"couple_05-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:21:\"couple_05-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:21:\"couple_05-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:21:\"couple_05-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:21:\"couple_05-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:21:\"couple_05-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:21:\"couple_05-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2419","1082","_wp_attached_file","2012/10/couple_01.jpg");
INSERT INTO wp_postmeta VALUES("2420","1082","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/couple_01.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"couple_01-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"couple_01-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:21:\"couple_01-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:21:\"couple_01-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:21:\"couple_01-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:21:\"couple_01-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:21:\"couple_01-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:21:\"couple_01-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2421","1083","_wp_attached_file","2012/10/couple_02.jpg");
INSERT INTO wp_postmeta VALUES("2422","1083","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/couple_02.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"couple_02-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"couple_02-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:21:\"couple_02-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:21:\"couple_02-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:21:\"couple_02-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:21:\"couple_02-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:21:\"couple_02-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:21:\"couple_02-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2423","1084","_wp_attached_file","2012/10/couple_03.jpg");
INSERT INTO wp_postmeta VALUES("2424","1084","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/couple_03.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"couple_03-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"couple_03-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:21:\"couple_03-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:21:\"couple_03-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:21:\"couple_03-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:21:\"couple_03-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:21:\"couple_03-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:21:\"couple_03-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2425","1086","_edit_last","1");
INSERT INTO wp_postmeta VALUES("2426","1086","_edit_lock","1349829244:1");
INSERT INTO wp_postmeta VALUES("2428","1086","snapEdIT","1");
INSERT INTO wp_postmeta VALUES("2429","1086","_gallery_type","");
INSERT INTO wp_postmeta VALUES("2430","1087","_wp_attached_file","2012/10/family_01.jpg");
INSERT INTO wp_postmeta VALUES("2431","1087","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/family_01.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"family_01-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"family_01-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:21:\"family_01-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:21:\"family_01-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:21:\"family_01-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:21:\"family_01-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:21:\"family_01-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:21:\"family_01-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2432","1088","_wp_attached_file","2012/10/family_02.jpg");
INSERT INTO wp_postmeta VALUES("2433","1088","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/family_02.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"family_02-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"family_02-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:21:\"family_02-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:21:\"family_02-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:21:\"family_02-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:21:\"family_02-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:21:\"family_02-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:21:\"family_02-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2434","1089","_wp_attached_file","2012/10/family_03.jpg");
INSERT INTO wp_postmeta VALUES("2435","1089","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/family_03.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"family_03-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"family_03-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:21:\"family_03-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:21:\"family_03-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:21:\"family_03-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:21:\"family_03-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:21:\"family_03-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:21:\"family_03-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2436","1090","_wp_attached_file","2012/10/family_04.jpg");
INSERT INTO wp_postmeta VALUES("2437","1090","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/family_04.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"family_04-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"family_04-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:21:\"family_04-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:21:\"family_04-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:21:\"family_04-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:21:\"family_04-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:21:\"family_04-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:21:\"family_04-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2438","1092","_edit_last","1");
INSERT INTO wp_postmeta VALUES("2440","1092","snapEdIT","1");
INSERT INTO wp_postmeta VALUES("2441","1092","_gallery_type","");
INSERT INTO wp_postmeta VALUES("2442","1092","_edit_lock","1349828956:1");
INSERT INTO wp_postmeta VALUES("2443","1093","_wp_attached_file","2012/10/implied_nude_and_nude_01.jpg");
INSERT INTO wp_postmeta VALUES("2444","1093","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:36:\"2012/10/implied_nude_and_nude_01.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"implied_nude_and_nude_01-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"implied_nude_and_nude_01-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"implied_nude_and_nude_01-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"implied_nude_and_nude_01-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"implied_nude_and_nude_01-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"implied_nude_and_nude_01-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"implied_nude_and_nude_01-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"implied_nude_and_nude_01-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2445","1094","_wp_attached_file","2012/10/implied_nude_and_nude_02.jpg");
INSERT INTO wp_postmeta VALUES("2446","1094","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:36:\"2012/10/implied_nude_and_nude_02.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"implied_nude_and_nude_02-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"implied_nude_and_nude_02-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:36:\"implied_nude_and_nude_02-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:36:\"implied_nude_and_nude_02-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:36:\"implied_nude_and_nude_02-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:36:\"implied_nude_and_nude_02-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:36:\"implied_nude_and_nude_02-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:36:\"implied_nude_and_nude_02-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2447","1096","_edit_last","1");
INSERT INTO wp_postmeta VALUES("2449","1096","snapEdIT","1");
INSERT INTO wp_postmeta VALUES("2450","1096","_gallery_type","");
INSERT INTO wp_postmeta VALUES("2451","1096","_edit_lock","1349828299:1");
INSERT INTO wp_postmeta VALUES("2483","1111","_wp_attached_file","2012/10/individual_hansen_01.jpg");
INSERT INTO wp_postmeta VALUES("2484","1111","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:32:\"2012/10/individual_hansen_01.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:32:\"individual_hansen_01-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:32:\"individual_hansen_01-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:32:\"individual_hansen_01-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:32:\"individual_hansen_01-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:32:\"individual_hansen_01-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:32:\"individual_hansen_01-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:32:\"individual_hansen_01-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:32:\"individual_hansen_01-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2454","1098","_wp_attached_file","2012/10/individual_03.jpg");
INSERT INTO wp_postmeta VALUES("2455","1098","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:25:\"2012/10/individual_03.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:25:\"individual_03-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:25:\"individual_03-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:25:\"individual_03-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:25:\"individual_03-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:25:\"individual_03-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:25:\"individual_03-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:25:\"individual_03-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:25:\"individual_03-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2456","1099","_wp_attached_file","2012/10/individual_01.jpg");
INSERT INTO wp_postmeta VALUES("2457","1099","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:25:\"2012/10/individual_01.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:25:\"individual_01-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:25:\"individual_01-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:25:\"individual_01-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:25:\"individual_01-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:25:\"individual_01-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:25:\"individual_01-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:25:\"individual_01-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:25:\"individual_01-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2458","1101","_edit_last","1");
INSERT INTO wp_postmeta VALUES("2460","1101","snapEdIT","1");
INSERT INTO wp_postmeta VALUES("2461","1101","_gallery_type","");
INSERT INTO wp_postmeta VALUES("2462","1101","_edit_lock","1349828179:1");
INSERT INTO wp_postmeta VALUES("2463","1102","_wp_attached_file","2012/10/newborn_05.jpg");
INSERT INTO wp_postmeta VALUES("2464","1102","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:22:\"2012/10/newborn_05.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"newborn_05-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"newborn_05-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:22:\"newborn_05-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:22:\"newborn_05-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:22:\"newborn_05-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:22:\"newborn_05-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:22:\"newborn_05-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:22:\"newborn_05-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2465","1103","_wp_attached_file","2012/10/newborn_01.jpg");
INSERT INTO wp_postmeta VALUES("2466","1103","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:22:\"2012/10/newborn_01.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"newborn_01-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"newborn_01-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:22:\"newborn_01-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:22:\"newborn_01-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:22:\"newborn_01-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:22:\"newborn_01-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:22:\"newborn_01-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:22:\"newborn_01-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2467","1104","_wp_attached_file","2012/10/newborn_02.jpg");
INSERT INTO wp_postmeta VALUES("2468","1104","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:22:\"2012/10/newborn_02.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"newborn_02-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"newborn_02-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:22:\"newborn_02-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:22:\"newborn_02-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:22:\"newborn_02-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:22:\"newborn_02-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:22:\"newborn_02-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:22:\"newborn_02-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2469","1105","_wp_attached_file","2012/10/newborn_03.jpg");
INSERT INTO wp_postmeta VALUES("2470","1105","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:22:\"2012/10/newborn_03.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"newborn_03-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"newborn_03-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:22:\"newborn_03-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:22:\"newborn_03-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:22:\"newborn_03-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:22:\"newborn_03-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:22:\"newborn_03-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:22:\"newborn_03-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2471","1106","_wp_attached_file","2012/10/newborn_04.jpg");
INSERT INTO wp_postmeta VALUES("2472","1106","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:22:\"2012/10/newborn_04.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"newborn_04-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"newborn_04-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:22:\"newborn_04-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:22:\"newborn_04-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:22:\"newborn_04-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:22:\"newborn_04-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:22:\"newborn_04-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:22:\"newborn_04-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2473","1108","_edit_last","1");
INSERT INTO wp_postmeta VALUES("2475","1108","snapEdIT","1");
INSERT INTO wp_postmeta VALUES("2476","1108","_gallery_type","");
INSERT INTO wp_postmeta VALUES("2477","1108","_edit_lock","1349842604:1");
INSERT INTO wp_postmeta VALUES("2478","1109","_wp_attached_file","2012/10/pregnancy_01.jpg");
INSERT INTO wp_postmeta VALUES("2479","1109","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:24:\"2012/10/pregnancy_01.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"pregnancy_01-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"pregnancy_01-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:24:\"pregnancy_01-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:24:\"pregnancy_01-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:24:\"pregnancy_01-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:24:\"pregnancy_01-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:24:\"pregnancy_01-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:24:\"pregnancy_01-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2480","454","_wp_trash_meta_status","publish");
INSERT INTO wp_postmeta VALUES("2481","454","_wp_trash_meta_time","1349760200");
INSERT INTO wp_postmeta VALUES("2487","1112","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2488","1112","_wp_trash_meta_time","1349827990");
INSERT INTO wp_postmeta VALUES("2489","1111","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2490","1111","_wp_trash_meta_time","1349827990");
INSERT INTO wp_postmeta VALUES("2491","1113","_wp_attached_file","2012/10/individual_hansen_011.jpg");
INSERT INTO wp_postmeta VALUES("2492","1113","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:33:\"2012/10/individual_hansen_011.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:33:\"individual_hansen_011-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:33:\"individual_hansen_011-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:33:\"individual_hansen_011-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:33:\"individual_hansen_011-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:33:\"individual_hansen_011-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:33:\"individual_hansen_011-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:33:\"individual_hansen_011-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:33:\"individual_hansen_011-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2493","1114","_wp_attached_file","2012/10/pregnancy_02.jpg");
INSERT INTO wp_postmeta VALUES("2494","1114","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:24:\"2012/10/pregnancy_02.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"pregnancy_02-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"pregnancy_02-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:24:\"pregnancy_02-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:24:\"pregnancy_02-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:24:\"pregnancy_02-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:24:\"pregnancy_02-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:24:\"pregnancy_02-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:24:\"pregnancy_02-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2495","1115","_wp_attached_file","2012/10/pregnancy_03.jpg");
INSERT INTO wp_postmeta VALUES("2496","1115","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:24:\"2012/10/pregnancy_03.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"pregnancy_03-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"pregnancy_03-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:24:\"pregnancy_03-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:24:\"pregnancy_03-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:24:\"pregnancy_03-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:24:\"pregnancy_03-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:24:\"pregnancy_03-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:24:\"pregnancy_03-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2497","1116","_wp_attached_file","2012/10/pregnancy_04.jpg");
INSERT INTO wp_postmeta VALUES("2498","1116","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:24:\"2012/10/pregnancy_04.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"pregnancy_04-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"pregnancy_04-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:24:\"pregnancy_04-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:24:\"pregnancy_04-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:24:\"pregnancy_04-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:24:\"pregnancy_04-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:24:\"pregnancy_04-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:24:\"pregnancy_04-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2499","1090","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2500","1090","_wp_trash_meta_time","1349829344");
INSERT INTO wp_postmeta VALUES("2501","1117","_wp_attached_file","2012/10/family_041.jpg");
INSERT INTO wp_postmeta VALUES("2502","1117","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:22:\"2012/10/family_041.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"family_041-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"family_041-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:22:\"family_041-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:22:\"family_041-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:22:\"family_041-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:22:\"family_041-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:22:\"family_041-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:22:\"family_041-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2503","1118","_wp_attached_file","2012/10/family_00.jpg");
INSERT INTO wp_postmeta VALUES("2504","1118","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:21:\"2012/10/family_00.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"family_00-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"family_00-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:21:\"family_00-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:21:\"family_00-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:21:\"family_00-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:21:\"family_00-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:21:\"family_00-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:21:\"family_00-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2505","1083","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2506","1083","_wp_trash_meta_time","1349829786");
INSERT INTO wp_postmeta VALUES("2507","1082","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2508","1082","_wp_trash_meta_time","1349829786");
INSERT INTO wp_postmeta VALUES("2509","1119","_wp_attached_file","2012/10/couple_021.jpg");
INSERT INTO wp_postmeta VALUES("2510","1119","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:22:\"2012/10/couple_021.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"couple_021-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"couple_021-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:22:\"couple_021-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:22:\"couple_021-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:22:\"couple_021-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:22:\"couple_021-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:22:\"couple_021-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:22:\"couple_021-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2511","1120","_wp_attached_file","2012/10/couple_011.jpg");
INSERT INTO wp_postmeta VALUES("2512","1120","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:22:\"2012/10/couple_011.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"couple_011-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"couple_011-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:22:\"couple_011-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:22:\"couple_011-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:22:\"couple_011-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:22:\"couple_011-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:22:\"couple_011-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:22:\"couple_011-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2513","1063","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2514","1063","_wp_trash_meta_time","1349830116");
INSERT INTO wp_postmeta VALUES("2515","1056","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2516","1056","_wp_trash_meta_time","1349830116");
INSERT INTO wp_postmeta VALUES("2517","1055","_wp_trash_meta_status","inherit");
INSERT INTO wp_postmeta VALUES("2518","1055","_wp_trash_meta_time","1349830116");
INSERT INTO wp_postmeta VALUES("2519","1121","_wp_attached_file","2012/10/poodle_031.jpg");
INSERT INTO wp_postmeta VALUES("2520","1121","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:22:\"2012/10/poodle_031.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"poodle_031-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"poodle_031-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:22:\"poodle_031-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:22:\"poodle_031-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:22:\"poodle_031-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:22:\"poodle_031-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:22:\"poodle_031-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:22:\"poodle_031-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2521","1122","_wp_attached_file","2012/10/dog_031.jpg");
INSERT INTO wp_postmeta VALUES("2522","1122","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:19:\"2012/10/dog_031.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:19:\"dog_031-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:19:\"dog_031-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:19:\"dog_031-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:19:\"dog_031-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:19:\"dog_031-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:19:\"dog_031-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:19:\"dog_031-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:19:\"dog_031-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2523","1123","_wp_attached_file","2012/10/dog_041.jpg");
INSERT INTO wp_postmeta VALUES("2524","1123","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:19:\"2012/10/dog_041.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:19:\"dog_041-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:19:\"dog_041-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:19:\"dog_041-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:19:\"dog_041-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:19:\"dog_041-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:19:\"dog_041-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:19:\"dog_041-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:19:\"dog_041-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2525","1124","_wp_attached_file","2012/10/dog_05.jpg");
INSERT INTO wp_postmeta VALUES("2526","1124","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:18:\"2012/10/dog_05.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:18:\"dog_05-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:18:\"dog_05-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:18:\"dog_05-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:18:\"dog_05-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:18:\"dog_05-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:18:\"dog_05-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:18:\"dog_05-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:18:\"dog_05-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2527","1125","_wp_attached_file","2012/10/cat_011.jpg");
INSERT INTO wp_postmeta VALUES("2528","1125","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:19:\"2012/10/cat_011.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:19:\"cat_011-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:19:\"cat_011-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:19:\"cat_011-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:19:\"cat_011-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:19:\"cat_011-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:19:\"cat_011-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:19:\"cat_011-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:19:\"cat_011-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2540","1130","_wp_attached_file","2012/10/corporate_01.jpg");
INSERT INTO wp_postmeta VALUES("2541","1130","_wp_attachment_metadata","a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"500\";s:14:\"hwstring_small\";s:23:\"height=\'62\' width=\'128\'\";s:4:\"file\";s:24:\"2012/10/corporate_01.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"corporate_01-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"corporate_01-300x146.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"146\";}s:9:\"gallery_2\";a:3:{s:4:\"file\";s:24:\"corporate_01-320x230.jpg\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"230\";}s:9:\"gallery_3\";a:3:{s:4:\"file\";s:24:\"corporate_01-190x134.jpg\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"134\";}s:9:\"gallery_4\";a:3:{s:4:\"file\";s:24:\"corporate_01-144x108.jpg\";s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"108\";}s:9:\"gallery_a\";a:3:{s:4:\"file\";s:24:\"corporate_01-635x310.jpg\";s:5:\"width\";s:3:\"635\";s:6:\"height\";s:3:\"310\";}s:9:\"portfolio\";a:3:{s:4:\"file\";s:24:\"corporate_01-455x300.jpg\";s:5:\"width\";s:3:\"455\";s:6:\"height\";s:3:\"300\";}s:4:\"blog\";a:3:{s:4:\"file\";s:24:\"corporate_01-410x200.jpg\";s:5:\"width\";s:3:\"410\";s:6:\"height\";s:3:\"200\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("2542","656","page_bg_gallery_id","1054");
INSERT INTO wp_postmeta VALUES("2546","1140","_wp_attached_file","2012/09/LivingimgBackground3.jpg");

DROP TABLE IF EXISTS `wp_posts`;

CREATE TABLE `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` longtext 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 AUTO_INCREMENT=1177 DEFAULT CHARSET=utf8;

INSERT INTO wp_posts VALUES("1","1","2012-09-08 04:24:28","2012-09-08 04:24:28","Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!","Hello world!","","trash","open","open","","hello-world","","","2012-09-19 00:33:25","2012-09-19 00:33:25","","0","http://www.livingimagephotography.com.au/?p=1","0","post","","1");
INSERT INTO wp_posts VALUES("1052","1","2012-10-05 03:07:43","2012-10-05 03:07:43","","Home","","inherit","open","open","","1035-revision-6","","","2012-10-05 03:07:43","2012-10-05 03:07:43","","1035","http://www.livingimagephotography.com.au/1035-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("1053","1","2012-10-09 00:49:31","2012-10-09 00:49:31","","Home","","inherit","open","open","","1035-revision-7","","","2012-10-09 00:49:31","2012-10-09 00:49:31","","1035","http://www.livingimagephotography.com.au/1035-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("1055","1","2012-10-09 04:34:21","2012-10-09 04:34:21","","dog_03","","trash","open","open","","dog_03","","","2012-10-10 00:48:36","2012-10-10 00:48:36","","1054","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/dog_03.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1056","1","2012-10-09 04:34:47","2012-10-09 04:34:47","","dog_04","","trash","open","open","","dog_04","","","2012-10-10 00:48:36","2012-10-10 00:48:36","","1054","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/dog_04.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1057","1","2012-10-09 04:35:12","2012-10-09 04:35:12","","poodle_01","","inherit","open","open","","poodle_01","","","2012-10-09 04:35:12","2012-10-09 04:35:12","","1054","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/poodle_01.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1058","1","2012-10-09 04:35:14","2012-10-09 04:35:14","","2nd","","inherit","open","open","","2nd","","","2012-10-09 04:35:14","2012-10-09 04:35:14","","1039","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/2nd.jpg","3","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1060","1","2012-10-09 04:35:22","2012-10-09 04:35:22","","poodle_02","","inherit","open","open","","poodle_02","","","2012-10-09 04:35:22","2012-10-09 04:35:22","","1054","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/poodle_02.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1127","1","2012-10-10 04:19:05","2012-10-10 04:19:05","","pregnancy_05","","inherit","open","open","","pregnancy_05","","","2012-10-10 04:19:05","2012-10-10 04:19:05","","1108","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/pregnancy_05.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1062","1","2012-10-09 04:35:37","2012-10-09 04:35:37","","5th","","inherit","open","open","","5th","","","2012-10-09 04:35:37","2012-10-09 04:35:37","","1039","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/5th.jpg","2","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1132","1","2012-10-10 05:20:10","0000-00-00 00:00:00","","Auto Draft","","auto-draft","open","open","","","","","2012-10-10 05:20:10","0000-00-00 00:00:00","","0","http://www.livingimagephotography.com.au/?p=1132","0","post","","0");
INSERT INTO wp_posts VALUES("587","1","2012-09-18 08:18:55","2012-09-18 08:18:55","<strong>A portrait experience from us is the perfect gift for a friend or a loved one.</strong> We have beautifully presented gift certificates available, that can also be personalised with a message from you. Please call the studio to organise your gift certificate over the phone. We will express post it to you so you have it as soon as possible, or you are welcome to pop into the studio and collect it in person.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><h6>Gift Certificates</h6><img class=\"alignleft size-full wp-image-590\" title=\"Gift Certificates\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate_thumbs.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>Our gift certificates are beautifully printed on heavy card stock, creased and sealed with a bow at the back. The gift certificates are personalised with your name, the recipients and a message if you wish. Certificates are available in any amount you wish.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a> &nbsp; <a href=\"http://www.livingimagephotography.com.au/gift-certificate-order-form/\" target=\"_blank\"><strong>[order now!]</strong></a>","Gifts","","publish","open","open","","gifts","","","2012-10-10 06:55:41","2012-10-10 06:55:41","","10","http://www.livingimagephotography.com.au/?page_id=587","0","page","","0");
INSERT INTO wp_posts VALUES("32","1","2012-09-11 02:24:07","2012-09-11 02:24:07","","Home Page","","trash","closed","closed","","home-page","","","2012-10-09 04:32:03","2012-10-09 04:32:03","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=32","0","gallery","","0");
INSERT INTO wp_posts VALUES("6","1","2012-09-08 04:42:26","2012-09-08 04:42:26","<div align=\"left\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/simon/Simon_01.png\" />\n</div>\n[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<div align=\"right\">\n<a href=\"https://www.facebook.com/livingimagesydney?ref=ts\" target=\"_blank\"><img width=\"152\" height=\"48\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/visit-us.png\" /></a>\n</div>\n\n<hr />\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","publish","open","open","","simon-carroll","","","2012-10-11 02:04:52","2012-10-11 02:04:52","","0","http://www.livingimagephotography.com.au/?page_id=6","0","page","","0");
INSERT INTO wp_posts VALUES("7","1","2012-09-08 04:42:00","2012-09-08 04:42:00","","Auto Draft","","inherit","open","open","","6-revision","","","2012-09-08 04:42:00","2012-09-08 04:42:00","","6","http://www.livingimagephotography.com.au/?p=7","0","revision","","0");
INSERT INTO wp_posts VALUES("8","1","2012-09-08 04:42:52","2012-09-08 04:42:52","","Gallery","","publish","open","open","","gallery","","","2012-09-08 04:42:52","2012-09-08 04:42:52","","0","http://www.livingimagephotography.com.au/?page_id=8","0","page","","0");
INSERT INTO wp_posts VALUES("9","1","2012-09-08 04:42:49","2012-09-08 04:42:49","","Gallery","","inherit","open","open","","8-revision","","","2012-09-08 04:42:49","2012-09-08 04:42:49","","8","http://www.livingimagephotography.com.au/?p=9","0","revision","","0");
INSERT INTO wp_posts VALUES("10","1","2012-09-08 04:43:24","2012-09-08 04:43:24","","Decor","","publish","open","open","","decor","","","2012-09-08 04:43:24","2012-09-08 04:43:24","","0","http://www.livingimagephotography.com.au/?page_id=10","0","page","","0");
INSERT INTO wp_posts VALUES("11","1","2012-09-08 04:43:21","2012-09-08 04:43:21","","Decor","","inherit","open","open","","10-revision","","","2012-09-08 04:43:21","2012-09-08 04:43:21","","10","http://www.livingimagephotography.com.au/?p=11","0","revision","","0");
INSERT INTO wp_posts VALUES("12","1","2012-09-08 04:43:56","2012-09-08 04:43:56","This will be a fun and exciting experience for you and your loved ones. To get the ball rolling simply make contact with us via our online form or by phone and we can chat with you about creating amazing portraits that you will treasure forever. Here’s what to expect when you work with us;\n","Your Experience","","publish","open","open","","your-experience","","","2012-09-15 05:41:08","2012-09-15 05:41:08","","0","http://www.livingimagephotography.com.au/?page_id=12","0","page","","0");
INSERT INTO wp_posts VALUES("14","1","2012-09-08 04:43:52","2012-09-08 04:43:52","","Your Experience","","inherit","open","open","","12-revision","","","2012-09-08 04:43:52","2012-09-08 04:43:52","","12","http://www.livingimagephotography.com.au/?p=14","0","revision","","0");
INSERT INTO wp_posts VALUES("15","1","2012-09-08 04:44:35","2012-09-08 04:44:35","An important part of the process is the cost. We feel it’s important that you receive the most value for your investment, and whatever you decide to purchase fits within your budget. We encourage you to feel comfortable with your order.\n\nAll of the work that we produce for you is finished artwork, ready to hang or display, and comes with a life time guarantee. With this in mind here is a guide to our pricing.\n\nOur portrait fee is $150, which includes;\n<ul>\n	<li>Your pre portrait consultation in our studio or on the phone (allow 30mins),</li>\n	<li>Your creative portrait session, in our studio (allow an hour and a half),</li>\n	<li>and your ordering session, in our studio (allow up to 2 hours)</li>\n</ul>\nWe aim to capture anywhere between 40 to 100 <em><span style=\"text-decoration: underline;\">different</span></em> images during your portrait session. We will take you through the whole collection during your ordering session for you to select your absolute favourites.\n\nOur 10 inch matted portraits start from as little as $195. We have a whole range display options to suit all price points and budgets. Our display options include;\n<ul>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/fine-art-decor/\">Wall Portraits &amp; Collections</a></li>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/fine-art-albums/\">Hand Bound Albums &amp; Story Books</a></li>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/fine-art-collections-box/\">Desktop Portraits &amp; Matted Prints</a></li>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/gifts/\">Gift Certificates for your friends and loved ones</a></li>\n</ul>\n<span style=\"color: #ff0000;\">Take this opportunity to <a href=\"http://www.livingimagephotography.com.au/bookings/\">book your session now</a>, and start this exciting journey.</span>","Pricing","","publish","open","open","","pricing","","","2012-10-10 06:57:00","2012-10-10 06:57:00","","0","http://www.livingimagephotography.com.au/?page_id=15","0","page","","0");
INSERT INTO wp_posts VALUES("16","1","2012-09-08 04:44:16","2012-09-08 04:44:16","","Auto Draft","","inherit","open","open","","15-revision","","","2012-09-08 04:44:16","2012-09-08 04:44:16","","15","http://www.livingimagephotography.com.au/?p=16","0","revision","","0");
INSERT INTO wp_posts VALUES("588","1","2012-09-26 04:16:43","2012-09-26 04:16:43","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><h6>Traditional Fine Art Albums</h6><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/portrait_alb1.jpg\" alt=\"\" width=\"\" height=\"\" /></a>\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><h6>Designer Magazine Albums</h6><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/designer_alb2.jpg\" alt=\"\" width=\"\" height=\"\" /></a>\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Albums","","inherit","open","open","","578-autosave","","","2012-09-26 04:16:43","2012-09-26 04:16:43","","578","http://www.livingimagephotography.com.au/578-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("18","1","2012-09-08 04:52:27","2012-09-08 04:52:27","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\">\n[quote]Just wanted to let both you and Simon know how wonderful my pictures are. I gave them to Tim on the weekend as a thank you for all his support over the last five years of my degree and also because it was the 35th anniversary of when we first started dating.\n\nHe LOVES the photos, really thinks they are amazing!!!!!!! Not only is he impressed with how I look he is also hugely impressed with the quality of the images, the presentation and just how professional it all looks\n\nThank you again for everything. I will definitely recommend you to everyone I meet.\n<p style=\"text-align: right\";><strong>-Sharon Bickford</strong></p>[/quote]\n<br />\n[quote]Before we arrived at Living Image Photography I was a little nervous, but as soon as we walked into the studio the nervous disappeared. The studio is a relaxing environment where Amy and Simon make you feel very welcome,  so you can be yourself. Derek and I had such a fun afternoon. At our viewing, there was so many good photos to chose from and the viewing room setup made it so easy to be able to select the photos, frames and sizes which would fit perfectly in our home. \nWe are so happy with our photos, and would recommend Living Image Photography to anyone who wants to capture those very special moments in your life – this is their speciality.\n<p style=\"text-align: right\";><strong>-Kim & Derek</strong></p>[/quote]\n<br />\n[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met</p>\n<br />\n<p style=\"text-align: right;\"><strong>-Michelle Matthewman </strong></p>[/quote]\n<p style=\"text-align: left;\">[quote]The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\n<br />\n<p style=\"text-align: right;\"><strong>- James &amp; Kristen Green </strong></p>[/quote]\n[quote]Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n<p style=\"text-align: right\";><strong>Cheers,\n</strong><strong>Jen Drysdale</strong></p>[/quote]\n\n[quote]Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinely had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thank you Simon.\n<p style=\"text-align: right\";><strong>-Maureen Wills </strong></p>[/quote]\n\n\n[quote]Dear Simon and Amy,\n\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\n\n\n<p style=\"text-align:right\";><strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></p>[/quote]\n\n\n[quote]I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\n<p style=\"text-align: right\";><strong>-Carly Hansen</strong></p>[/quote]\n\n\n[quote]Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\n<strong>See it here</strong>&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\" target=\"_blank\"><h6>The Strands Of Me</h6></a> </em>[/quote]\n\n\n[quote]Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<p style=\"text-align: right\";><strong>Cheers\nJess and Ben</strong>[/quote]\n\n\n[quote]Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderful photos had been captured of our ugly mugs!\n\n<p style=\"text-align: right\";><strong>Thanks again,\nAnne and Owen Kruger</strong></p>[/quote]\n\n\n[quote]We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\nIt was a great day – one I would recommend to anyone\n\n<p style=\"text-align: right\";><strong>Thanks so much,\nSimone Faulkner</strong></p>[/quote]\n\n\n[quote]Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!\n\n<p style=\"text-align: right\";><strong>The Trusso Family</strong></p>[/quote]\n\n\n[quote]Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! \n\n<p style=\"text-align:right\";><strong>Herman and Sol</strong></p>[/quote]\n\n\n[quote]Great photos! Great Service! Very professional people, very happy with everything! \n\n<p style=\"text-align: right\";><strong>Thanks\nHenneker Family</strong></p>[/quote]\n\n\n[quote]Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!\n\n<p style=\"text-align:right\";><strong>Mohamed Family</strong></p>[/quote]\n\n\n[quote]Hey guys!\n\nThank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.\n\n<strong><p style=\"text-align: right\";>Cheers,\nRobert Hart</strong></p>[/quote]\n\n\n[quote]Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.\n\n<p style=\"text-align: right\";><strong>Lyn and Rocco</p></strong>[/quote]\n\n\n[quote]A very pleasant experience. Living Image was very professional and accommodating.\n\n<p style=\"text-align:right\";><strong>Marty</p></strong>[/quote]\n\n\n[quote]We had a good time, very professional and friendly people.\n\n<strong><p style=\"text-align:right\";>Thank-you.\nJorge and Aracely</strong></p>[/quote]\n\n\n[quote]Very Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n\n<p style=\"text-align:right\";><strong>Edward Rynne</strong>[/quote]\n\n\n[quote]Thanks, great photos. Pleasant experience.\n\n<p style=\"text-align: right\";><strong>John and Antonella Calabrese</p></strong>[/quote]\n\n\n[quote]We’re very happy with the photos.\n\n<strong><p style=\"text-align\";>good job,\nHenry and Patricia Adie-Cooper</strong></p>[/quote]\n\n\n[quote]Thanks! Brilliant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n\n<p style=\"text-align: right\";><strong>Elaine and Noel Walters</strong></p>[/quote]\n\n\n[quote]We had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\n<strong><p style=\"text-align: right\";>Thanks,\nDerek Wall</strong></p>[/quote]\n\n\n[quote]A very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. \n\n<strong><p style=\"text-align: right\";>Thank-you,\nOtto and Jeannie Ashboth</strong></p>[/quote]\n\n\n[quote]Thanks for the fantastic photos and for being so patient handling all the young children.\n\n<p style=\"text-align: right\";><strong>Don</strong></p>[/quote]\n\n\n[quote]Lovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\n<strong><p style=\"text-align: right\";>Many thanks,\nBeryl Price</p></strong>[/quote]\n\n\n[quote]Very, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\n<strong><p style=\"text-align:right\";>Thanks,\nDionne Smith and family</p></strong>[/quote]\n\n\n[quote]Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\n<strong><p style=\"text-align: right\";>Thank you,\nJohn Garbin and family </p></strong>[/quote]","Testimonials","","publish","open","open","","testimonials","","","2012-10-11 01:54:19","2012-10-11 01:54:19","","0","http://www.livingimagephotography.com.au/?page_id=18","0","page","","0");
INSERT INTO wp_posts VALUES("19","1","2012-09-08 04:52:23","2012-09-08 04:52:23","","Testimonial","","inherit","open","open","","18-revision","","","2012-09-08 04:52:23","2012-09-08 04:52:23","","18","http://www.livingimagephotography.com.au/?p=19","0","revision","","0");
INSERT INTO wp_posts VALUES("20","1","2012-09-08 04:53:45","2012-09-08 04:53:45","<h3>Sydney</h3>\nSuite C1, Ground Floor, 210 Willoughby Road, Crows Nest, NSW, Australia 2065\nPhone: <strong>(02) 9967 3114</strong>\n<br />\n<strong>We are thrilled that you have chosen us to capture your portraits. We\'re sure you will enjoy your experience with us!</strong>\n\nPlease enter your details in the booking request form below, and we will be on contact with you very shortly.\n\n[gravityform id=1 title=false description=false]\n\n<em><strong>Please note, we will do our best to accommodate your preferred date and time for your session, please be aware that we may be unavailable for your preference and will discuss suitable alternatives with you if need be.</strong></em>","Bookings","","publish","open","open","","bookings","","","2012-10-11 01:06:54","2012-10-11 01:06:54","","0","http://www.livingimagephotography.com.au/?page_id=20","0","page","","0");
INSERT INTO wp_posts VALUES("21","1","2012-09-08 04:53:41","2012-09-08 04:53:41","","Booking","","inherit","open","open","","20-revision","","","2012-09-08 04:53:41","2012-09-08 04:53:41","","20","http://www.livingimagephotography.com.au/?p=21","0","revision","","0");
INSERT INTO wp_posts VALUES("22","1","2012-09-08 04:57:07","2012-09-08 04:57:07"," ","","","publish","open","open","","22","","","2012-10-11 01:12:14","2012-10-11 01:12:14","","0","http://www.livingimagephotography.com.au/?p=22","27","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("23","1","2012-09-08 04:57:07","2012-09-08 04:57:07"," ","","","publish","open","open","","23","","","2012-10-11 01:12:14","2012-10-11 01:12:14","","0","http://www.livingimagephotography.com.au/?p=23","26","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("24","1","2012-09-08 04:57:07","2012-09-08 04:57:07"," ","","","publish","open","open","","24","","","2012-10-11 01:12:14","2012-10-11 01:12:14","","0","http://www.livingimagephotography.com.au/?p=24","25","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("25","1","2012-09-08 04:57:07","2012-09-08 04:57:07"," ","","","publish","open","open","","25","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","0","http://www.livingimagephotography.com.au/?p=25","20","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("26","1","2012-09-08 04:57:07","2012-09-08 04:57:07"," ","","","publish","open","open","","26","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","0","http://www.livingimagephotography.com.au/?p=26","5","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("27","1","2012-09-08 04:57:07","2012-09-08 04:57:07"," ","","","publish","open","open","","27","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","0","http://www.livingimagephotography.com.au/?p=27","10","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("28","1","2012-09-08 04:57:07","2012-09-08 04:57:07","","Simon Carroll","","publish","open","open","","28","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","0","http://www.livingimagephotography.com.au/?p=28","2","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("29","1","2012-09-08 04:42:26","2012-09-08 04:42:26","","Home","","inherit","open","open","","6-revision-2","","","2012-09-08 04:42:26","2012-09-08 04:42:26","","6","http://www.livingimagephotography.com.au/?p=29","0","revision","","0");
INSERT INTO wp_posts VALUES("52","1","2012-09-11 08:27:57","2012-09-11 08:27:57","","LivingBackground","","inherit","open","open","","livingbackground","","","2012-09-11 08:27:57","2012-09-11 08:27:57","","6","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingBackground.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("53","1","2012-09-11 05:53:43","2012-09-11 05:53:43"," <em><h6>\"I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.\"\n-Simon Carroll</h6></em>","Welcome","","inherit","open","open","","6-revision-12","","","2012-09-11 05:53:43","2012-09-11 05:53:43","","6","http://www.livingimagephotography.com.au/?p=53","0","revision","","0");
INSERT INTO wp_posts VALUES("41","1","2012-09-08 05:12:18","2012-09-08 05:12:18","","Home","","inherit","open","open","","6-revision-3","","","2012-09-08 05:12:18","2012-09-08 05:12:18","","6","http://www.livingimagephotography.com.au/?p=41","0","revision","","0");
INSERT INTO wp_posts VALUES("42","1","2012-09-11 05:24:42","2012-09-11 05:24:42","","Home","","inherit","open","open","","6-revision-4","","","2012-09-11 05:24:42","2012-09-11 05:24:42","","6","http://www.livingimagephotography.com.au/?p=42","0","revision","","0");
INSERT INTO wp_posts VALUES("43","1","2012-09-11 05:26:53","2012-09-11 05:26:53","","Home","","inherit","open","open","","6-revision-5","","","2012-09-11 05:26:53","2012-09-11 05:26:53","","6","http://www.livingimagephotography.com.au/?p=43","0","revision","","0");
INSERT INTO wp_posts VALUES("44","1","2012-10-10 07:07:33","2012-10-10 07:07:33","<div align=\"left\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/simon/Simon_01.png\" />\n</div>\n[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<div align=\"right\">\n<a href=\"https://www.facebook.com/livingimagesydney?ref=ts\" target=\"_blank\"><img width=\"152\" height=\"48\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/visit-us.png\" /></a>\n</div>\n\n<hr />\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-autosave","","","2012-10-10 07:07:33","2012-10-10 07:07:33","","6","http://www.livingimagephotography.com.au/?p=44","0","revision","","0");
INSERT INTO wp_posts VALUES("142","1","2012-09-12 01:16:55","2012-09-12 01:16:55"," <em><h6>\"I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.\"\n-Simon Carroll</h6></em>","Welcome","","inherit","open","open","","6-revision-17","","","2012-09-12 01:16:55","2012-09-12 01:16:55","","6","http://www.livingimagephotography.com.au/6-revision-17/","0","revision","","0");
INSERT INTO wp_posts VALUES("45","1","2012-09-11 05:29:02","2012-09-11 05:29:02","","Home","","inherit","open","open","","6-revision-6","","","2012-09-11 05:29:02","2012-09-11 05:29:02","","6","http://www.livingimagephotography.com.au/?p=45","0","revision","","0");
INSERT INTO wp_posts VALUES("46","1","2012-09-11 05:34:23","2012-09-11 05:34:23"," <address>\"I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.\"\n-Simon Carroll</address>","Welcome","","inherit","open","open","","6-revision-7","","","2012-09-11 05:34:23","2012-09-11 05:34:23","","6","http://www.livingimagephotography.com.au/?p=46","0","revision","","0");
INSERT INTO wp_posts VALUES("47","1","2012-09-11 05:48:05","2012-09-11 05:48:05"," <h6><address>\"I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.\"\n-Simon Carroll</address></h6>","Welcome","","inherit","open","open","","6-revision-8","","","2012-09-11 05:48:05","2012-09-11 05:48:05","","6","http://www.livingimagephotography.com.au/?p=47","0","revision","","0");
INSERT INTO wp_posts VALUES("48","1","2012-09-11 05:48:38","2012-09-11 05:48:38"," <h6><address>\"I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.\"\n-Simon Carroll</address></h6>","Welcome","","inherit","open","open","","6-revision-9","","","2012-09-11 05:48:38","2012-09-11 05:48:38","","6","http://www.livingimagephotography.com.au/?p=48","0","revision","","0");
INSERT INTO wp_posts VALUES("50","1","2012-09-11 05:52:57","2012-09-11 05:52:57"," <h6><em>\"I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.\"\n-Simon Carroll</em></h6>","Welcome","","inherit","open","open","","6-revision-11","","","2012-09-11 05:52:57","2012-09-11 05:52:57","","6","http://www.livingimagephotography.com.au/?p=50","0","revision","","0");
INSERT INTO wp_posts VALUES("49","1","2012-09-11 05:51:43","2012-09-11 05:51:43"," <h6><address><em>\"I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.\"\n-Simon Carroll</em></address></h6>","Welcome","","inherit","open","open","","6-revision-10","","","2012-09-11 05:51:43","2012-09-11 05:51:43","","6","http://www.livingimagephotography.com.au/?p=49","0","revision","","0");
INSERT INTO wp_posts VALUES("55","1","2012-09-11 08:28:33","2012-09-11 08:28:33"," <em><h6>\"I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.\"\n-Simon Carroll</h6></em>","Welcome","","inherit","open","open","","6-revision-13","","","2012-09-11 08:28:33","2012-09-11 08:28:33","","6","http://www.livingimagephotography.com.au/?p=55","0","revision","","0");
INSERT INTO wp_posts VALUES("56","1","2012-09-11 23:57:06","2012-09-11 23:57:06"," <em><h6>\"I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.\"\n-Simon Carroll</h6></em>","Welcome","","inherit","open","open","","6-revision-14","","","2012-09-11 23:57:06","2012-09-11 23:57:06","","6","http://www.livingimagephotography.com.au/?p=56","0","revision","","0");
INSERT INTO wp_posts VALUES("57","1","2012-09-12 00:03:48","2012-09-12 00:03:48"," <em><h6>\"I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.\"\n-Simon Carroll</h6></em>","Welcome","","inherit","open","open","","6-revision-15","","","2012-09-12 00:03:48","2012-09-12 00:03:48","","6","http://www.livingimagephotography.com.au/?p=57","0","revision","","0");
INSERT INTO wp_posts VALUES("58","1","2012-09-12 00:40:13","2012-09-12 00:40:13"," <em><p>\"I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.\"\n-Simon Carroll</p></em>","Welcome","","inherit","open","open","","6-revision-16","","","2012-09-12 00:40:13","2012-09-12 00:40:13","","6","http://www.livingimagephotography.com.au/?p=58","0","revision","","0");
INSERT INTO wp_posts VALUES("59","1","2012-09-12 01:21:36","2012-09-12 01:21:36","<h3>What\'s all of this <em>FUSS</em> about?</h3>\n<br />\n<br />\n<Living image is teaming up with Steps with Hope to <strong>BUILD-A-FENCE around their school in Thailand;\nto provide a safe education environment to under privileged Khmer children, victims of the earlier war in Cambodia.\n<br />\n<br />\n<strong>Earlier this year,</strong> Founder of Steps with Hope- Jennifer Spoor, came into Living Image Photography to have her Family Portraits captured at Balmoral Beach, Mosman. On collection of her beautiful photographs, Jen opened up to us about the efforts in Thailand through Steps with Hope & the issues that the Khmer children face on a daily basis...\n<br />\n<br />\nSimon & I were inspired by Steps with Hope\'s effort to change the lives of under priviledged children. This made us think... <strong>how can we help?</strong>\n<br />\n<br />\n<h5><strong>I know what you\'re thinking...</strong></h5>\n<br />\n<br />\n<br />\n<h5>What can I do?</h5>\n<br />\n<br />\n<br />\n<h5>Well... let\'s have a think together.. how many of YOUR friends ACTUALLY have a beautiful family portrait? One? Two... None?</h5>\n<br />\n<br />\n<strong>Let\'s solve this problem.</strong>\n<br />\n<br />\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/star-tiny.png\" align=\"left\" alt=\"\" />one hour photography session\n<br />\n<br />\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/star-tiny.png\" align=\"left\" alt=\"\" />one hour design consultation\n<br />\n<br />\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/star-tiny.png\" align=\"left\" alt=\"\" /><strong>$500 credit</strong> towards your order\n<br />\n<br />\n<strong>All of this only $49<strong>\n<br />\n<br />\nWhen you but a voucher- <strong>25$</strong> of that will go DIRECTLY to the <strong>Build-a-Fence Project!!!</strong> (Voucher Valid untill the December 2012)\n<br />\n<br />\n<strong>Call amy on 02 9967 3114 to learn more & book now!</strong>\n<br />\n<br />\n<strong>TOGETHER LET\'S BUILD-A-FENCE</strong>\n<br />\n<br />\nI want you to read this email...\n<br />\nthen <strong>forward</strong>it onto your friends...\n<br />\n<strong>Tweet</strong> about it...\n<br />\nPost it to your <strong>facebook...</strong>\n<br />\n<br />\n<strong>TALK ABOUT IT</strong>\n<br />\n<strong>Everyone you know CAN help.</strong>\n<br />\n<br />\n<strong>It takes the world to make a difference.</strong>\n<br />\n<br />\n\"you will find, as you look back on your life, that the moments that stand out are the moments when you have done things for others.\"\n<br />\n- Henry Dummond\n<br />\n<br />\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/fences-withchild.png\" align=\"center\" alt=\"\" />","Build-a-Fence Project","","publish","open","open","","build-a-fence-project","","","2012-09-12 03:18:45","2012-09-12 03:18:45","","0","http://www.livingimagephotography.com.au/?page_id=59","0","page","","0");
INSERT INTO wp_posts VALUES("60","1","2012-09-12 01:20:31","2012-09-12 01:20:31","","Build-a-Fence Project","","inherit","open","open","","59-revision","","","2012-09-12 01:20:31","2012-09-12 01:20:31","","59","http://www.livingimagephotography.com.au/?p=60","0","revision","","0");
INSERT INTO wp_posts VALUES("61","1","2012-09-12 03:17:02","2012-09-12 03:17:02","<h3>What\'s all of this <em>FUSS</em> about?</h3>\n<br />\n<br />\n<Living image is teaming up with Steps with Hope to <strong>BUILD-A-FENCE around their school in Thailand;\nto provide a safe education environment to under privileged Khmer children, victims of the earlier war in Cambodia.\n<br />\n<br />\n<strong>Earlier this year,</strong> Founder of Steps with Hope- Jennifer Spoor, came into Living Image Photography to have her Family Portraits captured at Balmoral Beach, Mosman. On collection of her beautiful photographs, Jen opened up to us about the efforts in Thailand through Steps with Hope & the issues that the Khmer children face on a daily basis...\n<br />\n<br />\nSimon & I were inspired by Steps with Hope\'s effort to change the lives of under priviledged children. This made us think... <strong>how can we help?</strong>\n<br />\n<br />\n<h5><strong>I know what you\'re thinking...</strong></h5>\n<br />\n<br />\n<br />\n<h5>What can I do?</h5>\n<br />\n<br />\n<br />\n<h5>Well... let\'s have a think together.. how many of YOUR friends ACTUALLY have a beautiful family portrait? One? Two... None?</h5>\n<br />\n<br />\n<strong>Let\'s solve this problem.</strong>\n<br />\n<br />\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/star-tiny.png\" align=\"left\" alt=\"\" />one hour photography session\n<br />\n<br />\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/star-tiny.png\" align=\"left\" alt=\"\" />one hour design consultation\n<br />\n<br />\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/star-tiny.png\" align=\"left\" alt=\"\" /><strong>$500 credit</strong> towards your order\n<br />\n<br />\n<strong>All of this only $49<strong>\n<br />\n<br />\nWhen you but a voucher- <strong>25$</strong> of that will go DIRECTLY to the <strong>Build-a-Fence Project!!!</strong> (Voucher Valid untill the December 2012)\n<br />\n<br />\n<strong>Call amy on 02 9967 3114 to learn more & book now!</strong>\n<br />\n<br />\n<strong>TOGETHER LET\'S BUILD-A-FENCE</strong>\n<br />\n<br />\nI want you to read this email...\n<br />\nthen <strong>forward</strong>it onto your friends...\n<br />\n<strong>Tweet</strong> about it...\n<br />\nPost it to your <strong>facebook...</strong>\n<br />\n<br />\n<strong>TALK ABOUT IT</strong>\n<br />\n<strong>Everyone you know CAN help.</strong>\n<br />\n<br />\n<strong>It takes the world to make a difference.</strong>\n<br />\n<br />\n\"you will find, as you look back on your life, that the moments that stand out are the moments when you have done things for others.\"\n<br />\n- Henry Dummond\n<br />\n<br />\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/star-tiny.png\" align=\"left\" alt=\"\" />","Build-a-Fence Project","","inherit","open","open","","59-autosave","","","2012-09-12 03:17:02","2012-09-12 03:17:02","","59","http://www.livingimagephotography.com.au/59-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("62","1","2012-09-12 01:21:36","2012-09-12 01:21:36","","Build-a-Fence Project","","inherit","open","open","","59-revision-2","","","2012-09-12 01:21:36","2012-09-12 01:21:36","","59","http://www.livingimagephotography.com.au/59-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("64","1","2012-09-12 01:40:55","2012-09-12 01:40:55","<h3>What\'s all of this <em>FUSS</em> about?</h3>\n<br />\n<br />\n<Living image is teaming up with Steps with Hope to <strong>BUILD-A-FENCE around their school in Thailand;\nto provide a safe education environment to under privileged Khmer children, victims of the earlier war in Cambodia.\n<br />\n<br />\n<strong>Earlier this year,</strong> Founder of Steps with Hope- Jennifer Spoor, came into Living Image Photography to have her Family Portraits captured at Balmoral Beach, Mosman. On collection of her beautiful photographs, Jen opened up to us about the efforts in Thailand through Steps with Hope & the issues that the Khmer children face on a daily basis...\n<br />\n<br />\nSimon & I were inspired by Steps with Hope\'s effort to change the lives of under priviledged children. This made us think... <strong>how can we help?</strong>\n<br />\n<br />\n<h4><strong>I know what you\'re thinking...</strong></h4>\n<br />\n<br />\n<br />\n<h4>What can I do?</h4>\n<br />\n<br />\n<br />\n<h4>Well... let\'s have a think together.. how many of YOUR friends ACTUALLY have a beautiful family portrait? One? Two... None?</h4>\n<br />\n<br />\n<strong>Let\'s solve this problem.</strong>\n<br />\n<br />\n\n\n","Build-a-Fence Project","","inherit","open","open","","59-revision-4","","","2012-09-12 01:40:55","2012-09-12 01:40:55","","59","http://www.livingimagephotography.com.au/59-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("63","1","2012-09-12 01:39:03","2012-09-12 01:39:03","<h3>What\'s all of this <em>FUSS</em> about?</h3>\n<br />\n<br />\n<Living image is teaming up with Steps with Hope to <strong>BUILD-A-FENCE around their school in Thailand;\nto provide a safe education environment to under privileged Khmer children, victims of the earlier war in Cambodia.\n<br />\n<br />\n<strong>Earlier this year,</strong> Founder of Steps with Hope- Jennifer Spoor, came into Living Image Photography to have her Family Portraits captured at Balmoral Beach, Mosman. On collection of her beautiful photographs, Jen opened up to us about the efforts in Thailand through Steps with Hope & the issues that the Khmer children face on a daily basis...\n<br />\n<br />\nSimon & I were inspired by Steps with Hope\'s effort to change the lives of under priviledged children. This made us think... <strong>how can we help?</strong>\n<br />\n<br />\n<h3><strong>I know what you\'re thinking...</strong></h3>\n<br />\n<br />\n<br />\n<h3>What can I do?</h3>\n<br />\n<br />\n<br />\n<h3>Well... let\'s have a think together.. how many of YOUR friends ACTUALLY have a beautiful family portrait? One? Two... None?</h3>\n<br />\n<br />\n<strong>Let\'s solve this problem.</strong>\n<br />\n<br />\n\n\n","Build-a-Fence Project","","inherit","open","open","","59-revision-3","","","2012-09-12 01:39:03","2012-09-12 01:39:03","","59","http://www.livingimagephotography.com.au/59-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("65","1","2012-09-12 01:42:30","2012-09-12 01:42:30","<h3>What\'s all of this <em>FUSS</em> about?</h3>\n<br />\n<br />\n<Living image is teaming up with Steps with Hope to <strong>BUILD-A-FENCE around their school in Thailand;\nto provide a safe education environment to under privileged Khmer children, victims of the earlier war in Cambodia.\n<br />\n<br />\n<strong>Earlier this year,</strong> Founder of Steps with Hope- Jennifer Spoor, came into Living Image Photography to have her Family Portraits captured at Balmoral Beach, Mosman. On collection of her beautiful photographs, Jen opened up to us about the efforts in Thailand through Steps with Hope & the issues that the Khmer children face on a daily basis...\n<br />\n<br />\nSimon & I were inspired by Steps with Hope\'s effort to change the lives of under priviledged children. This made us think... <strong>how can we help?</strong>\n<br />\n<br />\n<h5><strong>I know what you\'re thinking...</strong></h5>\n<br />\n<br />\n<br />\n<h5>What can I do?</h5>\n<br />\n<br />\n<br />\n<h5>Well... let\'s have a think together.. how many of YOUR friends ACTUALLY have a beautiful family portrait? One? Two... None?</h5>\n<br />\n<br />\n<strong>Let\'s solve this problem.</strong>\n<br />\n<br />\n\n\n","Build-a-Fence Project","","inherit","open","open","","59-revision-5","","","2012-09-12 01:42:30","2012-09-12 01:42:30","","59","http://www.livingimagephotography.com.au/59-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("66","1","2012-09-12 01:56:52","2012-09-12 01:56:52","<h3>What\'s all of this <em>FUSS</em> about?</h3>\n<br />\n<br />\n<Living image is teaming up with Steps with Hope to <strong>BUILD-A-FENCE around their school in Thailand;\nto provide a safe education environment to under privileged Khmer children, victims of the earlier war in Cambodia.\n<br />\n<br />\n<strong>Earlier this year,</strong> Founder of Steps with Hope- Jennifer Spoor, came into Living Image Photography to have her Family Portraits captured at Balmoral Beach, Mosman. On collection of her beautiful photographs, Jen opened up to us about the efforts in Thailand through Steps with Hope & the issues that the Khmer children face on a daily basis...\n<br />\n<br />\nSimon & I were inspired by Steps with Hope\'s effort to change the lives of under priviledged children. This made us think... <strong>how can we help?</strong>\n<br />\n<br />\n<h5><strong>I know what you\'re thinking...</strong></h5>\n<br />\n<br />\n<br />\n<h5>What can I do?</h5>\n<br />\n<br />\n<br />\n<h5>Well... let\'s have a think together.. how many of YOUR friends ACTUALLY have a beautiful family portrait? One? Two... None?</h5>\n<br />\n<br />\n<strong>Let\'s solve this problem.</strong>\n<br />\n<br />\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/star-tiny.png\" align=\"left\" alt=\"\" />one hour photography session\n<br />\n<br />\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/star-tiny.png\" align=\"left\" alt=\"\" />one hour design consultation\n<br />\n<br />\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/star-tiny.png\" align=\"left\" alt=\"\" /><strong>$500 credit</strong> towards your order\n<br />\n<br />\n<strong>All of this only $49<strong>\n<br />\n<br />\nWhen you but a voucher- <strong>25$</strong> of that will go DIRECTLY to the <strong>Build-a-Fence Project!!!</strong> (Voucher Valid untill the December 2012)\n<br />\n<br />\n<strong>Call amy on 02 9967 3114 to learn more & book now!</strong>\n<br />\n<br />\n<strong>TOGETHER LET\'S BUILD-A-FENCE</strong>\n<br />\n<br />\nI want you to read this email...\n<br />\nthen <strong>forward</strong>it onto your friends...\n<br />\n<strong>Tweet</strong> about it...\n<br />\nPost it to your <strong>facebook...</strong>\n<br />\n<br />\n<strong>TALK ABOUT IT</strong>\n<br />\n<strong>Everyone you know CAN help.</strong>\n<br />\n<br />\n<strong>It takes the world to make a difference.</strong>\n<br />\n<br />\n\"you will find, as you look back on your life, that the moments that stand out are the moments when you have done things for others.\"\n<br />\n- Henry Dummond\n<br />\n<br />","Build-a-Fence Project","","inherit","open","open","","59-revision-6","","","2012-09-12 01:56:52","2012-09-12 01:56:52","","59","http://www.livingimagephotography.com.au/59-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("67","1","2012-09-12 03:17:55","2012-09-12 03:17:55","<h3>What\'s all of this <em>FUSS</em> about?</h3>\n<br />\n<br />\n<Living image is teaming up with Steps with Hope to <strong>BUILD-A-FENCE around their school in Thailand;\nto provide a safe education environment to under privileged Khmer children, victims of the earlier war in Cambodia.\n<br />\n<br />\n<strong>Earlier this year,</strong> Founder of Steps with Hope- Jennifer Spoor, came into Living Image Photography to have her Family Portraits captured at Balmoral Beach, Mosman. On collection of her beautiful photographs, Jen opened up to us about the efforts in Thailand through Steps with Hope & the issues that the Khmer children face on a daily basis...\n<br />\n<br />\nSimon & I were inspired by Steps with Hope\'s effort to change the lives of under priviledged children. This made us think... <strong>how can we help?</strong>\n<br />\n<br />\n<h5><strong>I know what you\'re thinking...</strong></h5>\n<br />\n<br />\n<br />\n<h5>What can I do?</h5>\n<br />\n<br />\n<br />\n<h5>Well... let\'s have a think together.. how many of YOUR friends ACTUALLY have a beautiful family portrait? One? Two... None?</h5>\n<br />\n<br />\n<strong>Let\'s solve this problem.</strong>\n<br />\n<br />\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/star-tiny.png\" align=\"left\" alt=\"\" />one hour photography session\n<br />\n<br />\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/star-tiny.png\" align=\"left\" alt=\"\" />one hour design consultation\n<br />\n<br />\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/star-tiny.png\" align=\"left\" alt=\"\" /><strong>$500 credit</strong> towards your order\n<br />\n<br />\n<strong>All of this only $49<strong>\n<br />\n<br />\nWhen you but a voucher- <strong>25$</strong> of that will go DIRECTLY to the <strong>Build-a-Fence Project!!!</strong> (Voucher Valid untill the December 2012)\n<br />\n<br />\n<strong>Call amy on 02 9967 3114 to learn more & book now!</strong>\n<br />\n<br />\n<strong>TOGETHER LET\'S BUILD-A-FENCE</strong>\n<br />\n<br />\nI want you to read this email...\n<br />\nthen <strong>forward</strong>it onto your friends...\n<br />\n<strong>Tweet</strong> about it...\n<br />\nPost it to your <strong>facebook...</strong>\n<br />\n<br />\n<strong>TALK ABOUT IT</strong>\n<br />\n<strong>Everyone you know CAN help.</strong>\n<br />\n<br />\n<strong>It takes the world to make a difference.</strong>\n<br />\n<br />\n\"you will find, as you look back on your life, that the moments that stand out are the moments when you have done things for others.\"\n<br />\n- Henry Dummond\n<br />\n<br />\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/fences-withchild-tiny.png\" align=\"center\" alt=\"\" />","Build-a-Fence Project","","inherit","open","open","","59-revision-7","","","2012-09-12 03:17:55","2012-09-12 03:17:55","","59","http://www.livingimagephotography.com.au/59-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("69","1","2012-09-12 04:25:22","2012-09-12 04:25:22","","logo","","inherit","open","open","","logo","","","2012-09-12 04:25:22","2012-09-12 04:25:22","","0","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/logo.png","0","attachment","image/png","0");
INSERT INTO wp_posts VALUES("70","1","2012-09-12 04:29:57","2012-09-12 04:29:57","","We\'ll be Live Soon!","","inherit","open","open","","logocomingsoon","","","2012-09-12 04:29:57","2012-09-12 04:29:57","","0","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/logocomingsoon.png","0","attachment","image/png","0");
INSERT INTO wp_posts VALUES("71","1","2012-09-12 07:08:43","2012-09-12 07:08:43","Nothing beats those cute chubby hands and feet, big gummy smiles and if we\'re lucky some giggles. Our baby portraits are fun and unique. We spend the time to patiently capture your little one\'s character. Keeping playful and light we create a variety of portraits that will just make your heart melt.\n\nThis is a wonderful period in your babies life to have their portrait done, they change so quickly, and before you know it those beautiful baby features will have gone. Capture those special little things for life with a baby portrait from us!","Baby Portraits","","trash","open","open","","baby-portraits","","","2012-09-27 02:26:54","2012-09-27 02:26:54","","8","http://www.livingimagephotography.com.au/?page_id=71","0","page","","0");
INSERT INTO wp_posts VALUES("72","1","2012-09-12 07:07:51","2012-09-12 07:07:51","","Baby Portraits","","inherit","open","open","","71-revision","","","2012-09-12 07:07:51","2012-09-12 07:07:51","","71","http://www.livingimagephotography.com.au/71-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("73","1","2012-09-21 08:01:35","2012-09-21 08:01:35","","Child Portraits","","trash","open","open","","child-portraits","","","2012-09-21 08:02:07","2012-09-21 08:02:07","","0","http://www.livingimagephotography.com.au/?page_id=73","0","page","","0");
INSERT INTO wp_posts VALUES("74","1","2012-09-12 07:08:43","2012-09-12 07:08:43","","Baby Portraits","","inherit","open","open","","71-revision-2","","","2012-09-12 07:08:43","2012-09-12 07:08:43","","71","http://www.livingimagephotography.com.au/71-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("75","1","2012-09-12 07:14:50","2012-09-12 07:14:50","Photographing children’s portraits can be one of the most rewarding experiences!  Enjoying the fun and excitement of youth always reflects well in our work. We photograph children from infant through to early teenage years, and we enjoy a unique experience every time. It’s amazing how many different little personalities we encounter.\n\nOur creative children’s portraiture is the envy of many of our top-class peers: we have a simple method that ensures that our children enjoy themselves and interact with the whole portrait session. It’s definitely not just chasing a child around with a camera, which will never yield great results.\n\nExperience and creativity allow us to relax and interact with your child, in order to bring out their little personalities and capture them as they are. We like to make the children’s portrait session enjoyable and exciting for your little one - always careful not to over stimulate. We think it’s important that your child feels like they have a say, or some control in the session.  This helps to overcome their fear of being photographed and also involves the little one directly in the portrait process - which brings the portrait session to life.\n\nAlong with the studio portrait sessions, we enjoy photographing many of our child portrait studies on location.  We have some picturesque situations that really create amazing compositions, we’re sure you will agree.","Child Portraits","","trash","open","open","","child-portraits","","","2012-09-27 02:26:54","2012-09-27 02:26:54","","8","http://www.livingimagephotography.com.au/?page_id=75","0","page","","0");
INSERT INTO wp_posts VALUES("76","1","2012-09-12 07:12:40","2012-09-12 07:12:40","","Child Portraits","","inherit","open","open","","75-revision","","","2012-09-12 07:12:40","2012-09-12 07:12:40","","75","http://www.livingimagephotography.com.au/75-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("77","1","2012-09-12 07:28:23","2012-09-12 07:28:23","Getting your professional image right is very important, and having a corporate headshot that mimics your image is just as important.\n\nWe take the time to create a host of different portrait poses and looks to achieve the exact representation that you wish to portray in your corporate headshot.\n\nOur corporate headshots can be simple plain white background, great for business cards and for clipping, or we can create more dynamic portraits that represent more personality and feel for your corporate image. Chat with us about your options.\n\nWe deliver your corporate headshots promptly, with all digital files colour corrected in super high resolution ready for print or digital publishing.\n\nWe cater for individuals or whole teams, on site or in our centrally located studios. Have a look through our corporate headshot gallery below and <a href=\"http://www.livingimagephotography.com.au/bookings/\">contact us</a> for more information.","Corporate Headshots","","publish","open","open","","corporate-headshots","","","2012-10-10 04:36:43","2012-10-10 04:36:43","","8","http://www.livingimagephotography.com.au/?page_id=77","0","page","","0");
INSERT INTO wp_posts VALUES("78","1","2012-09-12 07:21:49","2012-09-12 07:21:49","","Corporate Headshots","","inherit","open","open","","77-revision","","","2012-09-12 07:21:49","2012-09-12 07:21:49","","77","http://www.livingimagephotography.com.au/77-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("79","1","2012-09-12 07:29:56","2012-09-12 07:29:56","The intimacy between two people reflected in an image always invokes a satisfying sense of love, security, and hope.<strong> </strong>Capturing these emotions in a couple’s portrait is our challenge...a challenge that we truly enjoy, and as you can see by our work, very successful at meeting.\n\nOur Couples portraits are the most dynamic and enjoyable type of photographic sessions that we shoot.. Although it often takes the men some time to relax, we find that enjoying the session and the freedom to try different things comes quite easily to them soon enough.\n\nCreating a fun and relaxed atmosphere is the key to allowing the true character of each individual to surface. Then, we are able to witness the true interaction between the couple - those special looks, squeezes and kisses that mean so much but are often overlooked in a couple’s portrait. The special way your man holds your hand, or the way your partner rests her head on your chest, these are the details that tell the story.\n\nOur work is designed to reflect you as a couple, not merely shots of two people. There’s an important distinction between the two and that is where having a professional photographer create artistic portraits of you makes all the difference. We understand how to capture people at their best and how to reflect the intimacy that you share.  Our couples\' portraits are almost a study on human nature.\n\nThe technical aspect of our work is very precise; we have all spent many years perfecting our art, which allows us to concentrate on the emotion and composition of a shot.  You can rest assured that we will capture a high quality photography ready to be printed at whatever size you choose.\n\nIf you are interested in our work please give us a call to discuss your options.  Remember, you can design the type of photographs we take or you can leave us to our creative ways. Often we find the middle ground between your design and our creativity results in truly outstanding portraits that you will treasure.","Couple Portraits","","publish","open","open","","couple-portraits","","","2012-10-09 04:58:35","2012-10-09 04:58:35","","8","http://www.livingimagephotography.com.au/?page_id=79","0","page","","0");
INSERT INTO wp_posts VALUES("80","1","2012-09-12 07:29:15","2012-09-12 07:29:15","","Couple Portraits","","inherit","open","open","","79-revision","","","2012-09-12 07:29:15","2012-09-12 07:29:15","","79","http://www.livingimagephotography.com.au/79-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("81","1","2012-09-12 07:33:03","2012-09-12 07:33:03","The best way to remember your family as they are now is with a creative family portrait.<strong> </strong>It’s important to capture your family as they are now, as time moves so fast, and kids grow up so quickly.\n\nCreating stunning family portraits for our clients remains the true passion of our studio. We truly enjoy the time we spend with our clients, capturing unique portraits of them together as their family unit. Our work reflects the passion we have for creating this wonderful work.  Every family is different, made up of so many different characters, that it really makes our work very interesting.\n\nA great way to spend a few hours, we find, is experiencing our clients together as a family. We create a relaxed environment where the personalities of family members come out, allowing us to capture the interaction of the family as they truly are.\n\nBe proud of your family and display a unique family portrait in your home - your friends and colleagues will be envious.\n\nWe have a host of display options for your family portraits designed to compliment your home, which all come with a life time guarantee.\n\nContact us now to arrange a family portrait consultation so you can spend some important time with us; exploring your options and planning your upcoming family portrait.","Family Portraits","","publish","open","open","","family-portraits","","","2012-10-09 05:02:46","2012-10-09 05:02:46","","8","http://www.livingimagephotography.com.au/?page_id=81","0","page","","0");
INSERT INTO wp_posts VALUES("82","1","2012-09-12 07:31:47","2012-09-12 07:31:47","","Family Portraits","","inherit","open","open","","81-revision","","","2012-09-12 07:31:47","2012-09-12 07:31:47","","81","http://www.livingimagephotography.com.au/81-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("83","1","2012-09-12 07:34:22","2012-09-12 07:34:22","Celebrate you! Time moves on constantly, and at certain points in our life we do take pause to think about ourselves; where we are now and what we have achieved. A great way to permanently remember these moments and celebrate yourself is with an Individual Portrait collection from us.\n\nWe design your Individual Portrait session to suit you and your personality, often with a mix of creative and candid portraits - and maybe something dramatic if you\'re daring... Our very personal photographers will chat with you and spend some quality time working with you to create a collection of amazing individual portraits that are YOU.\n\nHave a look through some of our examples below, we\'re always pushing the boundaries and trying new things with our Individual portraits, so if you have a few ideas please bring them along.\n\nJump on board now, <a href=\"http://www.livingimagephotography.com.au/bookings/\">contact us</a> and we\'ll get your adventure started - soon you will be enjoying your Individual portrait forever!","Individual Portraits","","publish","open","open","","individual-portraits","","","2012-10-09 05:07:57","2012-10-09 05:07:57","","8","http://www.livingimagephotography.com.au/?page_id=83","0","page","","0");
INSERT INTO wp_posts VALUES("84","1","2012-09-12 07:33:40","2012-09-12 07:33:40","","Individual Portraits","","inherit","open","open","","83-revision","","","2012-09-12 07:33:40","2012-09-12 07:33:40","","83","http://www.livingimagephotography.com.au/83-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("85","1","2012-09-12 07:38:44","2012-09-12 07:38:44","We cherish our newborns - your precious new person, with their chubby little hands, tiny-tiny feet, funny expressions and big-big yawns. Do they not make your heart glow? At such an important stage of life it is important to capture these little ones as they are now. There’s no better way than to have a unique newborn portrait session with us.\n\nOur creative newborn portrait sessions allow us to capture your wonderful child in their very early stage of life. We focus our attention on their unique facial character, dimples and the sometimes forgotten details like their feet, their hands and chubby bottoms.\n\nOften the window of opportunity is very small when photographing newborn portraits. Within the first 2 weeks from birth is the best time. We also try to plan your newborn portrait session for straight after a feed or just before sleep so we can create beautiful peaceful images that you and your family will treasure.\n\nSometimes capturing babies at this stage can take a couple of goes; they are certainly not predictable and work to their own routine, not anyone else’s. We are very well aware of the demands newborns put on parents and we gear ourselves towards creating a relaxed atmosphere so both parent and child can feel at ease. We use a warm, hygienic and private studio and do not use flash lighting wherever possible. This experience helps us to create timeless images of the beautiful newborn children that grace our studio.\n\nPlease be sure to contact us for a friendly chat about our newborn portrait photography, you may wish to book a time at this early stage to visit the studio and experience our many different photographic styles that we have on offer. We look forward to meeting with you very soon.\n","Newborn Portraits","","publish","open","open","","newborn-portraits","","","2012-10-09 05:19:58","2012-10-09 05:19:58","","8","http://www.livingimagephotography.com.au/?page_id=85","0","page","","0");
INSERT INTO wp_posts VALUES("86","1","2012-09-12 07:36:12","2012-09-12 07:36:12","","Newborn Portraits","","inherit","open","open","","85-revision","","","2012-09-12 07:36:12","2012-09-12 07:36:12","","85","http://www.livingimagephotography.com.au/85-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("87","1","2012-09-12 07:39:54","2012-09-12 07:39:54","Pregnancy is a very special time in a woman’s life that can be remembered forever with a beautiful, artistic maternity portrait. Whether this is your 1st child or your 4th, it’s still an amazing experience that should be honoured with great images of this special time.\n\nIn a safe, comfortable and relaxed environment, we encourage our expectant clients to have fun with their photographic session. Wear as much or as little clothing that you are comfortable with, and bring your partner and other children to share in this special moment.\n\nWe find the best time to photograph our expecting mums is between 6-10 weeks prior to the birth.  If you are closer to the delivery date, please call us now so we can fit you in as soon as possible – you don’t want to miss this wonderful opportunity.\n\nOur pre-natal photography is designed to your taste - you have full control over the look of your images. We can create stunning black and white studio shots or be more daring and work with environmental landscapes – the options are endless.\n\nPlanning your pregnancy photographs is crucial to achieving the look you desire.  Thus, we encourage you to call us for a friendly chat and a visit to the studio to plan your pregnancy portrait session and meet us in person.\n\nWe hope you enjoy viewing our work and look forward to hearing from you very soon.  Please don’t miss this opportunity to capture you as you are now.\n","Pregnancy Portraits","","publish","open","open","","pregnancy-portraits","","","2012-10-09 05:22:17","2012-10-09 05:22:17","","8","http://www.livingimagephotography.com.au/?page_id=87","0","page","","0");
INSERT INTO wp_posts VALUES("88","1","2012-09-12 07:39:21","2012-09-12 07:39:21","","Pregnancy Portraits","","inherit","open","open","","87-revision","","","2012-09-12 07:39:21","2012-09-12 07:39:21","","87","http://www.livingimagephotography.com.au/87-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("89","1","2012-09-12 07:42:32","2012-09-12 07:42:32"," ","","","publish","open","open","","89","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","8","http://www.livingimagephotography.com.au/?p=89","14","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("90","1","2012-09-12 07:42:31","2012-09-12 07:42:31"," ","","","publish","open","open","","90","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","8","http://www.livingimagephotography.com.au/?p=90","15","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("91","1","2012-09-12 07:42:31","2012-09-12 07:42:31"," ","","","publish","open","open","","91","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","8","http://www.livingimagephotography.com.au/?p=91","11","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("92","1","2012-09-12 07:42:31","2012-09-12 07:42:31"," ","","","publish","open","open","","92","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","8","http://www.livingimagephotography.com.au/?p=92","17","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("93","1","2012-09-12 07:42:31","2012-09-12 07:42:31"," ","","","publish","open","open","","93","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","8","http://www.livingimagephotography.com.au/?p=93","12","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("94","1","2012-09-12 07:42:31","2012-09-12 07:42:31"," ","","","publish","open","open","","94","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","8","http://www.livingimagephotography.com.au/?p=94","18","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("944","1","2012-09-27 02:04:03","2012-09-27 02:04:03","","ChildrensPhotographer100","","trash","open","open","","childrensphotographer100-2","","","2012-10-05 01:05:02","2012-10-05 01:05:02","","896","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer1001.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("97","1","2012-09-13 02:43:15","2012-09-13 02:43:15","description","Babies","","trash","closed","closed","","babies","","","2012-09-27 01:56:48","2012-09-27 01:56:48","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=97","0","gallery","","0");
INSERT INTO wp_posts VALUES("121","1","2012-09-12 07:11:33","2012-09-12 07:11:33","","Baby Portraits","","inherit","open","open","","71-revision-3","","","2012-09-12 07:11:33","2012-09-12 07:11:33","","71","http://www.livingimagephotography.com.au/71-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("122","1","2012-09-13 03:17:48","2012-09-13 03:17:48","","Baby Portraits","","inherit","open","open","","71-revision-4","","","2012-09-13 03:17:48","2012-09-13 03:17:48","","71","http://www.livingimagephotography.com.au/71-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("123","1","2012-09-13 03:20:47","2012-09-13 03:20:47","Nothing beats those cute chubby hands and feet, big gummy smiles and if we\'re lucky some giggles. Our baby portraits are fun and unique. We spend the time to patiently capture your little one\'s character. Keeping playful and light we create a variety of portraits that will just make your heart melt.\n\nThis is a wonderful period in your babies life to have their portrait done, they change so quickly, and before you know it those beautiful baby features will have gone. Capture those special little things for life with a baby portrait from us!","Baby Portraits","","inherit","open","open","","71-revision-5","","","2012-09-13 03:20:47","2012-09-13 03:20:47","","71","http://www.livingimagephotography.com.au/71-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("124","1","2012-09-13 03:33:38","2012-09-13 03:33:38","","Child","","trash","closed","closed","","child","","","2012-09-27 01:56:48","2012-09-27 01:56:48","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=124","0","gallery","","0");
INSERT INTO wp_posts VALUES("125","1","2012-09-13 04:07:26","2012-09-13 04:07:26","","ChildrensPhotographer094","","trash","open","open","","childrensphotographer094","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer094.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("126","1","2012-09-13 04:07:43","2012-09-13 04:07:43","","ChildrensPhotographer095","","trash","open","open","","childrensphotographer095","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer095.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("127","1","2012-09-13 04:07:55","2012-09-13 04:07:55","","ChildrensPhotographer096","","trash","open","open","","childrensphotographer096","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer096.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("129","1","2012-09-13 04:08:42","2012-09-13 04:08:42","\nNothing beats those cute chubby hands and feet, big gummy smiles and if we\'re lucky some giggles. Our baby portraits are fun and unique. We spend the time to patiently capture your little one\'s character. Keeping playful and light we create a variety of portraits that will just make your heart melt.\n\nThis is a wonderful period in your babies life to have their portrait done, they change so quickly, and before you know it those beautiful baby features will have gone. Capture those special little things for life with a baby portrait from us!","Baby Portraits","","inherit","open","open","","71-autosave","","","2012-09-13 04:08:42","2012-09-13 04:08:42","","71","http://www.livingimagephotography.com.au/71-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("130","1","2012-09-13 04:08:46","2012-09-13 04:08:46","","ChildrensPhotographer098","","trash","open","open","","childrensphotographer098","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer098.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("131","1","2012-09-13 04:09:05","2012-09-13 04:09:05","","ChildrensPhotographer099","","trash","open","open","","childrensphotographer099","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer099.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("137","1","2012-09-13 04:11:09","2012-09-13 04:11:09","","ChildrensPhotographer105","","trash","open","open","","childrensphotographer105","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer105.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("139","1","2012-09-13 04:11:47","2012-09-13 04:11:47","","ChildrensPhotographer107","","trash","open","open","","childrensphotographer107","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer107.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("145","1","2012-09-13 04:12:26","2012-09-13 04:12:26","[quote]\nI am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.\n[/quote]\n\n-Simon Carroll","Welcome","","inherit","open","open","","6-revision-18","","","2012-09-13 04:12:26","2012-09-13 04:12:26","","6","http://www.livingimagephotography.com.au/6-revision-18/","0","revision","","0");
INSERT INTO wp_posts VALUES("147","1","2012-09-13 04:14:24","2012-09-13 04:14:24","","ChildrensPhotographer113","","trash","open","open","","childrensphotographer113","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer113.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("149","1","2012-09-13 04:15:01","2012-09-13 04:15:01","","ChildrensPhotographer115","","trash","open","open","","childrensphotographer115","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer115.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("151","1","2012-09-13 04:15:30","2012-09-13 04:15:30","","ChildrensPhotographer117","","trash","open","open","","childrensphotographer117","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer117.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("152","1","2012-09-13 04:13:35","2012-09-13 04:13:35","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.\n-Simon Carroll</h6>\n[/quote]\n\n-Simon Carroll","Welcome","","inherit","open","open","","6-revision-19","","","2012-09-13 04:13:35","2012-09-13 04:13:35","","6","http://www.livingimagephotography.com.au/6-revision-19/","0","revision","","0");
INSERT INTO wp_posts VALUES("153","1","2012-09-13 04:15:48","2012-09-13 04:15:48","","ChildrensPhotographer118","","trash","open","open","","childrensphotographer118","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer118.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("154","1","2012-09-13 04:16:07","2012-09-13 04:16:07","","ChildrensPhotographer119","","trash","open","open","","childrensphotographer119","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer119.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("156","1","2012-09-13 04:16:41","2012-09-13 04:16:41","","ChildrensPhotographer001","","trash","open","open","","childrensphotographer001","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer001.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("158","1","2012-09-13 04:17:17","2012-09-13 04:17:17","","ChildrensPhotographer003","","trash","open","open","","childrensphotographer003","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer003.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("159","1","2012-09-13 04:17:26","2012-09-13 04:17:26","","ChildrensPhotographer004","","trash","open","open","","childrensphotographer004","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer004.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("160","1","2012-09-13 04:17:43","2012-09-13 04:17:43","","ChildrensPhotographer005","","trash","open","open","","childrensphotographer005","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer005.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("161","1","2012-09-13 04:17:58","2012-09-13 04:17:58","","ChildrensPhotographer006","","trash","open","open","","childrensphotographer006","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer006.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("162","1","2012-09-13 04:15:44","2012-09-13 04:15:44","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.\n-Simon Carroll</h6>\n[/quote]","Welcome","","inherit","open","open","","6-revision-20","","","2012-09-13 04:15:44","2012-09-13 04:15:44","","6","http://www.livingimagephotography.com.au/6-revision-20/","0","revision","","0");
INSERT INTO wp_posts VALUES("163","1","2012-09-13 04:18:12","2012-09-13 04:18:12","","ChildrensPhotographer007","","trash","open","open","","childrensphotographer007","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer007.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("164","1","2012-09-13 04:18:36","2012-09-13 04:18:36","","ChildrensPhotographer008","","trash","open","open","","childrensphotographer008","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer008.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("165","1","2012-09-13 04:19:07","2012-09-13 04:19:07","","ChildrensPhotographer009","","trash","open","open","","childrensphotographer009","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer009.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("167","1","2012-09-13 04:18:06","2012-09-13 04:18:06","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.\n-Simon Carroll</h6>\n[/quote]\n<br />\n[butto href\"http://www.livingimagephotography.com.au/bookings/\" color=\"red\"]Red[/button]","Welcome","","inherit","open","open","","6-revision-21","","","2012-09-13 04:18:06","2012-09-13 04:18:06","","6","http://www.livingimagephotography.com.au/6-revision-21/","0","revision","","0");
INSERT INTO wp_posts VALUES("168","1","2012-09-13 04:19:49","2012-09-13 04:19:49","","ChildrensPhotographer011","","trash","open","open","","childrensphotographer011","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer011.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("169","1","2012-09-13 04:20:04","2012-09-13 04:20:04","","ChildrensPhotographer012","","trash","open","open","","childrensphotographer012","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer012.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("171","1","2012-09-13 04:19:35","2012-09-13 04:19:35","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.\n-Simon Carroll</h6>\n[/quote]\n<br />\n[button href\"http://www.livingimagephotography.com.au/bookings/\" color=\"red\"]Red[/button]","Welcome","","inherit","open","open","","6-revision-22","","","2012-09-13 04:19:35","2012-09-13 04:19:35","","6","http://www.livingimagephotography.com.au/6-revision-22/","0","revision","","0");
INSERT INTO wp_posts VALUES("172","1","2012-09-13 04:20:47","2012-09-13 04:20:47","","ChildrensPhotographer014","","trash","open","open","","childrensphotographer014","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer014.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("173","1","2012-09-13 04:21:29","2012-09-13 04:21:29","","ChildrensPhotographer015","","trash","open","open","","childrensphotographer015","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer015.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("176","1","2012-09-13 04:22:17","2012-09-13 04:22:17","","ChildrensPhotographer018","","trash","open","open","","childrensphotographer018","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer018.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("177","1","2012-09-13 04:22:29","2012-09-13 04:22:29","","ChildrensPhotographer019","","trash","open","open","","childrensphotographer019","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer019.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("178","1","2012-09-13 04:20:43","2012-09-13 04:20:43","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-Simon Carroll\n[/quote]\n<br />\n[button href\"http://www.livingimagephotography.com.au/bookings/\" color=\"red\"]Red[/button]","Welcome","","inherit","open","open","","6-revision-23","","","2012-09-13 04:20:43","2012-09-13 04:20:43","","6","http://www.livingimagephotography.com.au/6-revision-23/","0","revision","","0");
INSERT INTO wp_posts VALUES("192","1","2012-09-13 04:27:07","2012-09-13 04:27:07","","ChildrensPhotographer031","","trash","open","open","","childrensphotographer031","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer031.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("181","1","2012-09-13 04:23:50","2012-09-13 04:23:50","","ChildrensPhotographer022","","trash","open","open","","childrensphotographer022","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer022.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("182","1","2012-09-13 04:22:34","2012-09-13 04:22:34","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <h6>-Simon</h6> Carroll\n[/quote]\n<br />\n","Welcome","","inherit","open","open","","6-revision-24","","","2012-09-13 04:22:34","2012-09-13 04:22:34","","6","http://www.livingimagephotography.com.au/6-revision-24/","0","revision","","0");
INSERT INTO wp_posts VALUES("183","1","2012-09-13 04:24:20","2012-09-13 04:24:20","","ChildrensPhotographer023","","trash","open","open","","childrensphotographer023","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer023.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("184","1","2012-09-13 04:24:43","2012-09-13 04:24:43","","ChildrensPhotographer024","","trash","open","open","","childrensphotographer024","","","2012-09-20 23:58:43","2012-09-20 23:58:43","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer024.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("188","1","2012-09-13 04:26:19","2012-09-13 04:26:19","","ChildrensPhotographer028","","trash","open","open","","childrensphotographer028","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer028.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("189","1","2012-09-13 04:26:32","2012-09-13 04:26:32","","ChildrensPhotographer029","","trash","open","open","","childrensphotographer029","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer029.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("191","1","2012-09-13 04:24:06","2012-09-13 04:24:06","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <h6>-Simon</h6> Carroll\n[/quote]\n<br />\n","Welcome","","inherit","open","open","","6-revision-25","","","2012-09-13 04:24:06","2012-09-13 04:24:06","","6","http://www.livingimagephotography.com.au/6-revision-25/","0","revision","","0");
INSERT INTO wp_posts VALUES("193","1","2012-09-13 04:27:38","2012-09-13 04:27:38","","ChildrensPhotographer032","","trash","open","open","","childrensphotographer032","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer032.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("194","1","2012-09-13 04:26:50","2012-09-13 04:26:50","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <h6>-Simon Carroll</h6> \n[/quote]\n<br />\n","Welcome","","inherit","open","open","","6-revision-26","","","2012-09-13 04:26:50","2012-09-13 04:26:50","","6","http://www.livingimagephotography.com.au/6-revision-26/","0","revision","","0");
INSERT INTO wp_posts VALUES("196","1","2012-09-13 04:28:30","2012-09-13 04:28:30","","ChildrensPhotographer034","","trash","open","open","","childrensphotographer034","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer034.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("197","1","2012-09-13 04:28:45","2012-09-13 04:28:45","","ChildrensPhotographer035","","trash","open","open","","childrensphotographer035","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer035.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("198","1","2012-09-13 04:29:24","2012-09-13 04:29:24","","ChildrensPhotographer036","","trash","open","open","","childrensphotographer036","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer036.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("199","1","2012-09-13 04:29:52","2012-09-13 04:29:52","","ChildrensPhotographer037","","trash","open","open","","childrensphotographer037","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer037.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("200","1","2012-09-13 04:30:20","2012-09-13 04:30:20","","ChildrensPhotographer038","","trash","open","open","","childrensphotographer038","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer038.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("201","1","2012-09-13 04:30:42","2012-09-13 04:30:42","","ChildrensPhotographer039","","trash","open","open","","childrensphotographer039","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer039.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("202","1","2012-09-13 04:31:18","2012-09-13 04:31:18","","ChildrensPhotographer040","","trash","open","open","","childrensphotographer040","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer040.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("203","1","2012-09-13 04:31:35","2012-09-13 04:31:35","","ChildrensPhotographer041","","trash","open","open","","childrensphotographer041","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer041.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("205","1","2012-09-13 04:32:23","2012-09-13 04:32:23","","ChildrensPhotographer043","","trash","open","open","","childrensphotographer043","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer043.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("207","1","2012-09-13 04:33:04","2012-09-13 04:33:04","","ChildrensPhotographer045","","trash","open","open","","childrensphotographer045","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer045.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("208","1","2012-09-13 04:34:05","2012-09-13 04:34:05","","ChildrensPhotographer046","","trash","open","open","","childrensphotographer046","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer046.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("210","1","2012-09-13 04:34:51","2012-09-13 04:34:51","","ChildrensPhotographer048","","trash","open","open","","childrensphotographer048","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer048.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("212","1","2012-09-13 04:35:48","2012-09-13 04:35:48","","ChildrensPhotographer050","","trash","open","open","","childrensphotographer050","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer050.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("213","1","2012-09-13 04:36:08","2012-09-13 04:36:08","","ChildrensPhotographer051","","trash","open","open","","childrensphotographer051","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer051.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("214","1","2012-09-13 04:36:28","2012-09-13 04:36:28","","ChildrensPhotographer052","","trash","open","open","","childrensphotographer052","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer052.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("216","1","2012-09-13 04:37:11","2012-09-13 04:37:11","","ChildrensPhotographer054","","trash","open","open","","childrensphotographer054","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer054.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("222","1","2012-09-13 04:39:33","2012-09-13 04:39:33","","ChildrensPhotographer060","","trash","open","open","","childrensphotographer060","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer060.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("223","1","2012-09-13 04:40:28","2012-09-13 04:40:28","","ChildrensPhotographer061","","trash","open","open","","childrensphotographer061","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer061.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("224","1","2012-09-13 04:41:00","2012-09-13 04:41:00","","ChildrensPhotographer062","","trash","open","open","","childrensphotographer062","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer062.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("225","1","2012-09-13 04:41:28","2012-09-13 04:41:28","","ChildrensPhotographer063","","trash","open","open","","childrensphotographer063","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer063.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("228","1","2012-09-13 04:42:32","2012-09-13 04:42:32","","ChildrensPhotographer066","","trash","open","open","","childrensphotographer066","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer066.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("229","1","2012-09-13 04:43:10","2012-09-13 04:43:10","","ChildrensPhotographer067","","trash","open","open","","childrensphotographer067","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer067.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("230","1","2012-09-13 04:43:40","2012-09-13 04:43:40","","ChildrensPhotographer068","","trash","open","open","","childrensphotographer068","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer068.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("231","1","2012-09-13 04:44:06","2012-09-13 04:44:06","","ChildrensPhotographer069","","trash","open","open","","childrensphotographer069","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer069.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("232","1","2012-09-13 04:44:22","2012-09-13 04:44:22","","ChildrensPhotographer070","","trash","open","open","","childrensphotographer070","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer070.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("233","1","2012-09-13 04:44:41","2012-09-13 04:44:41","","ChildrensPhotographer071","","trash","open","open","","childrensphotographer071","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer071.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("235","1","2012-09-13 04:45:06","2012-09-13 04:45:06","","ChildrensPhotographer073","","trash","open","open","","childrensphotographer073","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer073.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("236","1","2012-09-13 04:45:29","2012-09-13 04:45:29","","ChildrensPhotographer074","","trash","open","open","","childrensphotographer074","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer074.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("237","1","2012-09-13 04:45:47","2012-09-13 04:45:47","","ChildrensPhotographer075","","trash","open","open","","childrensphotographer075","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer075.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("238","1","2012-09-13 04:46:09","2012-09-13 04:46:09","","ChildrensPhotographer076","","trash","open","open","","childrensphotographer076","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer076.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("239","1","2012-09-13 04:46:40","2012-09-13 04:46:40","","ChildrensPhotographer077","","trash","open","open","","childrensphotographer077","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer077.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("241","1","2012-09-13 04:47:21","2012-09-13 04:47:21","","ChildrensPhotographer079","","trash","open","open","","childrensphotographer079","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer079.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("242","1","2012-09-13 04:47:41","2012-09-13 04:47:41","","ChildrensPhotographer080","","trash","open","open","","childrensphotographer080","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer080.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("243","1","2012-09-13 04:47:54","2012-09-13 04:47:54","","ChildrensPhotographer081","","trash","open","open","","childrensphotographer081","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer081.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("246","1","2012-09-13 04:49:29","2012-09-13 04:49:29","","ChildrensPhotographer084","","trash","open","open","","childrensphotographer084","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer084.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("250","1","2012-09-13 04:51:21","2012-09-13 04:51:21","","ChildrensPhotographer088","","trash","open","open","","childrensphotographer088","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer088.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("252","1","2012-09-13 04:51:45","2012-09-13 04:51:45","","ChildrensPhotographer090","","trash","open","open","","childrensphotographer090","","","2012-09-20 23:58:42","2012-09-20 23:58:42","","124","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer090.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("256","1","2012-09-12 07:14:50","2012-09-12 07:14:50","","Child Portraits","","inherit","open","open","","75-revision-2","","","2012-09-12 07:14:50","2012-09-12 07:14:50","","75","http://www.livingimagephotography.com.au/75-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("257","1","2012-09-13 05:16:06","2012-09-13 05:16:06","Photographing children’s portraits can be one of the most rewarding experiences!  Enjoying the fun and excitement of youth always reflects well in our work. We photograph children from infant through to early teenage years, and we enjoy a unique experience every time. It’s amazing how many different little personalities we encounter.\n\nOur creative children’s portraiture is the envy of many of our top-class peers: we have a simple method that ensures that our children enjoy themselves and interact with the whole portrait session. It’s definitely not just chasing a child around with a camera, which will never yield great results.\n\nExperience and creativity allow us to relax and interact with your child, in order to bring out their little personalities and capture them as they are. We like to make the children’s portrait session enjoyable and exciting for your little one - always careful not to over stimulate. We think it’s important that your child feels like they have a say, or some control in the session.  This helps to overcome their fear of being photographed and also involves the little one directly in the portrait process - which brings the portrait session to life.\n\nAlong with the studio portrait sessions, we enjoy photographing many of our child portrait studies on location.  We have some picturesque situations that really create amazing compositions, we’re sure you will agree.","Child Portraits","","inherit","open","open","","75-revision-3","","","2012-09-13 05:16:06","2012-09-13 05:16:06","","75","http://www.livingimagephotography.com.au/75-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("839","1","2012-09-21 05:36:53","2012-09-21 05:36:53","<br />\nThis weeks Pic of the Week goes to the beautiful mother, Sofia with her 7 month old daughter Isabella. Sofia &amp; Isabella came to our Northbridge Studio to have their Portrait Photography taken earlier this week. They blew us away with an ease behind the camera and a gentle nature. Photographer Simon Carroll captured this magnificent moment between mother and daughter... there is honestly not a more perfect embrace.\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/javelosa-1096-Edit-Edit.jpg\"><img class=\"alignnone size-full wp-image-940\" title=\"javelosa-1096-Edit-Edit\" src=\"http://www.livingimagephotography.com/wp-content/uploads/2012/08/javelosa-1096-Edit-Edit.jpg\" alt=\"\" width=\"361\" height=\"229\" /></a>","Pic of the week!","","inherit","open","open","","640-revision-6","","","2012-09-21 05:36:53","2012-09-21 05:36:53","","640","http://www.livingimagephotography.com.au/640-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("260","1","2012-09-13 05:24:52","2012-09-13 05:24:52","","Corporate Headshots","","trash","closed","closed","","corporate-headshots","","","2012-10-09 02:01:55","2012-10-09 02:01:55","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=260","0","gallery","","0");
INSERT INTO wp_posts VALUES("266","1","2012-09-13 03:22:26","2012-09-13 03:22:26","Nothing beats those cute chubby hands and feet, big gummy smiles and if we\'re lucky some giggles. Our baby portraits are fun and unique. We spend the time to patiently capture your little one\'s character. Keeping playful and light we create a variety of portraits that will just make your heart melt.\n\nThis is a wonderful period in your babies life to have their portrait done, they change so quickly, and before you know it those beautiful baby features will have gone. Capture those special little things for life with a baby portrait from us!","Baby Portraits","","inherit","open","open","","71-revision-6","","","2012-09-13 03:22:26","2012-09-13 03:22:26","","71","http://www.livingimagephotography.com.au/71-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("273","1","2012-09-13 05:21:21","2012-09-13 05:21:21","Photographing children’s portraits can be one of the most rewarding experiences!  Enjoying the fun and excitement of youth always reflects well in our work. We photograph children from infant through to early teenage years, and we enjoy a unique experience every time. It’s amazing how many different little personalities we encounter.\n\nOur creative children’s portraiture is the envy of many of our top-class peers: we have a simple method that ensures that our children enjoy themselves and interact with the whole portrait session. It’s definitely not just chasing a child around with a camera, which will never yield great results.\n\nExperience and creativity allow us to relax and interact with your child, in order to bring out their little personalities and capture them as they are. We like to make the children’s portrait session enjoyable and exciting for your little one - always careful not to over stimulate. We think it’s important that your child feels like they have a say, or some control in the session.  This helps to overcome their fear of being photographed and also involves the little one directly in the portrait process - which brings the portrait session to life.\n\nAlong with the studio portrait sessions, we enjoy photographing many of our child portrait studies on location.  We have some picturesque situations that really create amazing compositions, we’re sure you will agree.","Child Portraits","","inherit","open","open","","75-revision-4","","","2012-09-13 05:21:21","2012-09-13 05:21:21","","75","http://www.livingimagephotography.com.au/75-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("277","1","2012-09-12 07:28:23","2012-09-12 07:28:23","","Corporate Headshots","","inherit","open","open","","77-revision-2","","","2012-09-12 07:28:23","2012-09-12 07:28:23","","77","http://www.livingimagephotography.com.au/77-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("278","1","2012-09-13 05:36:34","2012-09-13 05:36:34","Getting your professional image right is very important, and having a corporate headshot that mimics your image is just as important.\n\nWe take the time to create a host of different portrait poses and looks to achieve the exact representation that you wish to portray in your corporate headshot.\n\nOur corporate headshots can be simple plain white background, great for business cards and for clipping, or we can create more dynamic portraits that represent more personality and feel for your corporate image. Chat with us about your options.\n\nWe deliver your corporate headshots promptly, with all digital files colour corrected in super high resolution ready for print or digital publishing.\n\nWe cater for individuals or whole teams, on site or in our centrally located studios. Have a look through our corporate headshot gallery below and [intlink id=\"183\" type=\"page\"]contact us[/intlink] for more information.","Corporate Headshots","","inherit","open","open","","77-revision-3","","","2012-09-13 05:36:34","2012-09-13 05:36:34","","77","http://www.livingimagephotography.com.au/77-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("279","1","2012-09-13 05:39:35","2012-09-13 05:39:35","Getting your professional image right is very important, and having a corporate headshot that mimics your image is just as important.\n\nWe take the time to create a host of different portrait poses and looks to achieve the exact representation that you wish to portray in your corporate headshot.\n\nOur corporate headshots can be simple plain white background, great for business cards and for clipping, or we can create more dynamic portraits that represent more personality and feel for your corporate image. Chat with us about your options.\n\nWe deliver your corporate headshots promptly, with all digital files colour corrected in super high resolution ready for print or digital publishing.\n\nWe cater for individuals or whole teams, on site or in our centrally located studios. Have a look through our corporate headshot gallery below and [intlink id=\"183\" type=\"page\"]contact us[/intlink] for more information.","Corporate Headshots","","inherit","open","open","","77-revision-4","","","2012-09-13 05:39:35","2012-09-13 05:39:35","","77","http://www.livingimagephotography.com.au/77-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("280","1","2012-09-13 06:26:20","2012-09-13 06:26:20","","Couple","","trash","closed","closed","","couple","","","2012-10-09 02:01:55","2012-10-09 02:01:55","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=280","0","gallery","","0");
INSERT INTO wp_posts VALUES("281","1","2012-09-13 06:20:57","2012-09-13 06:20:57","Getting your professional image right is very important, and having a corporate headshot that mimics your image is just as important.\n\nWe take the time to create a host of different portrait poses and looks to achieve the exact representation that you wish to portray in your corporate headshot.\n\nOur corporate headshots can be simple plain white background, great for business cards and for clipping, or we can create more dynamic portraits that represent more personality and feel for your corporate image. Chat with us about your options.\n\nWe deliver your corporate headshots promptly, with all digital files colour corrected in super high resolution ready for print or digital publishing.\n\nWe cater for individuals or whole teams, on site or in our centrally located studios. Have a look through our corporate headshot gallery below and [intlink id=\"183\" type=\"page\"]contact us[/intlink] for more information.","Corporate Headshots","","inherit","open","open","","77-revision-5","","","2012-09-13 06:20:57","2012-09-13 06:20:57","","77","http://www.livingimagephotography.com.au/77-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("285","1","2012-09-13 06:34:07","2012-09-13 06:34:07","","CouplesPortraits003","","trash","open","open","","couplesportraits003","","","2012-09-21 04:25:54","2012-09-21 04:25:54","","280","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CouplesPortraits003.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("287","1","2012-09-13 06:35:53","2012-09-13 06:35:53","","CouplesPortraits005","","trash","open","open","","couplesportraits005","","","2012-09-21 04:25:54","2012-09-21 04:25:54","","280","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CouplesPortraits005.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("290","1","2012-09-13 06:36:50","2012-09-13 06:36:50","","CouplesPortraits008","","trash","open","open","","couplesportraits008","","","2012-09-21 04:25:54","2012-09-21 04:25:54","","280","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CouplesPortraits008.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("291","1","2012-09-13 06:37:02","2012-09-13 06:37:02","","CouplesPortraits009","","trash","open","open","","couplesportraits009","","","2012-09-21 04:25:54","2012-09-21 04:25:54","","280","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CouplesPortraits009.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("294","1","2012-09-13 06:38:07","2012-09-13 06:38:07","","CouplesPortraits012","","trash","open","open","","couplesportraits012","","","2012-09-21 04:25:54","2012-09-21 04:25:54","","280","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CouplesPortraits012.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("295","1","2012-09-13 06:38:20","2012-09-13 06:38:20","","CouplesPortraits013","","trash","open","open","","couplesportraits013","","","2012-09-21 04:25:54","2012-09-21 04:25:54","","280","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CouplesPortraits013.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("297","1","2012-09-13 06:38:48","2012-09-13 06:38:48","","CouplesPortraits015","","trash","open","open","","couplesportraits015","","","2012-09-21 04:25:54","2012-09-21 04:25:54","","280","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CouplesPortraits015.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("301","1","2012-09-13 06:39:41","2012-09-13 06:39:41","","CouplesPortraits019","","trash","open","open","","couplesportraits019","","","2012-09-21 04:25:54","2012-09-21 04:25:54","","280","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CouplesPortraits019.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("308","1","2012-09-13 06:44:47","2012-09-13 06:44:47","The intimacy between two people reflected in an image always invokes a satisfying sense of love, security, and hope.<strong> </strong>Capturing these emotions in a couple’s portrait is our challenge...a challenge that we truly enjoy, and as you can see by our work, very successful at meeting.\n\nOur Couples portraits are the most dynamic and enjoyable type of photographic sessions that we shoot.. Although it often takes the men some time to relax, we find that enjoying the session and the freedom to try different things comes quite easily to them soon enough.\n\nCreating a fun and relaxed atmosphere is the key to allowing the true character of each individual to surface. Then, we are able to witness the true interaction between the couple - those special looks, squeezes and kisses that mean so much but are often overlooked in a couple’s portrait. The special way your man holds your hand, or the way your partner rests her head on your chest, these are the details that tell the story.\n\nOur work is designed to reflect you as a couple, not merely shots of two people. There’s an important distinction between the two and that is where having a professional photographer create artistic portraits of you makes all the difference. We understand how to capture people at their best and how to reflect the intimacy that you share.  Our couples\' portraits are almost a study on human nature.\n\nThe technical aspect of our work is very precise; we have all spent many years perfecting our art, which allows us to concentrate on the emotion and composition of a shot.  You can rest assured that we will capture a high quality photography ready to be printed at whatever size you choose.\n\nIf you are interested in our work please give us a call to discuss your options.  Remember, you can design the type of photographs we take or you can leave us to our creative ways. Often we find the middle ground between your design and our creativity results in truly outstanding portraits that you will treasure.","Couple Portraits","","inherit","open","open","","79-autosave","","","2012-09-13 06:44:47","2012-09-13 06:44:47","","79","http://www.livingimagephotography.com.au/79-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("309","1","2012-09-12 07:29:56","2012-09-12 07:29:56","","Couple Portraits","","inherit","open","open","","79-revision-2","","","2012-09-12 07:29:56","2012-09-12 07:29:56","","79","http://www.livingimagephotography.com.au/79-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("345","1","2012-09-14 01:16:44","2012-09-14 01:16:44","","Family","","trash","closed","closed","","family-2","","","2012-10-09 02:01:54","2012-10-09 02:01:54","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=345","0","gallery","","0");
INSERT INTO wp_posts VALUES("346","1","2012-09-14 01:17:52","2012-09-14 01:17:52","","FamilyPortraitPhotographer091","","trash","open","open","","familyportraitphotographer091","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer091.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("347","1","2012-09-14 01:18:01","2012-09-14 01:18:01","","FamilyPortraitPhotographer092","","trash","open","open","","familyportraitphotographer092","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer092.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("349","1","2012-09-14 01:18:30","2012-09-14 01:18:30","","FamilyPortraitPhotographer094","","trash","open","open","","familyportraitphotographer094","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer094.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("350","1","2012-09-14 01:18:40","2012-09-14 01:18:40","","familyportrait-swing","","trash","open","open","","familyportrait-swing","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/familyportrait-swing.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("352","1","2012-09-14 01:18:57","2012-09-14 01:18:57","","hartno_7741","","trash","open","open","","hartno_7741","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/hartno_7741.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("355","1","2012-09-14 01:19:39","2012-09-14 01:19:39","","liv_5194","","trash","open","open","","liv_5194","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/liv_5194.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("356","1","2012-09-14 01:19:53","2012-09-14 01:19:53","","LIV_5698","","trash","open","open","","liv_5698","","","2012-10-05 01:07:30","2012-10-05 01:07:30","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LIV_5698.jpg","35","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("358","1","2012-09-14 01:20:42","2012-09-14 01:20:42","","LIV_9477","","trash","open","open","","liv_9477","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LIV_9477.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("360","1","2012-09-14 01:21:37","2012-09-14 01:21:37","","Potter-1153","","trash","open","open","","potter-1153","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Potter-1153.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("361","1","2012-09-14 01:21:48","2012-09-14 01:21:48","","anandarajan","","trash","open","open","","anandarajan","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/anandarajan.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("364","1","2012-09-14 01:22:52","2012-09-14 01:22:52","","FamilyPortraitPhotographer002","","trash","open","open","","familyportraitphotographer002","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer002.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("365","1","2012-09-14 01:23:14","2012-09-14 01:23:14","","FamilyPortraitPhotographer003","","trash","open","open","","familyportraitphotographer003","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer003.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("366","1","2012-09-14 01:23:27","2012-09-14 01:23:27","","FamilyPortraitPhotographer004","","trash","open","open","","familyportraitphotographer004","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer004.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("367","1","2012-09-14 01:23:41","2012-09-14 01:23:41","","FamilyPortraitPhotographer005","","trash","open","open","","familyportraitphotographer005","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer005.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("368","1","2012-09-14 01:23:55","2012-09-14 01:23:55","","FamilyPortraitPhotographer006","","trash","open","open","","familyportraitphotographer006","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer006.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("369","1","2012-09-14 01:24:08","2012-09-14 01:24:08","","FamilyPortraitPhotographer007","","trash","open","open","","familyportraitphotographer007","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer007.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("370","1","2012-09-14 01:24:21","2012-09-14 01:24:21","","FamilyPortraitPhotographer008","","trash","open","open","","familyportraitphotographer008","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer008.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("371","1","2012-09-14 01:24:30","2012-09-14 01:24:30","","FamilyPortraitPhotographer009","","trash","open","open","","familyportraitphotographer009","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer009.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("372","1","2012-09-14 01:24:43","2012-09-14 01:24:43","","FamilyPortraitPhotographer010","","trash","open","open","","familyportraitphotographer010","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer010.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("374","1","2012-09-14 01:25:08","2012-09-14 01:25:08","","FamilyPortraitPhotographer012","","trash","open","open","","familyportraitphotographer012","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer012.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("375","1","2012-09-14 01:25:18","2012-09-14 01:25:18","","FamilyPortraitPhotographer013","","trash","open","open","","familyportraitphotographer013","","","2012-10-05 01:07:30","2012-10-05 01:07:30","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer013.jpg","29","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("377","1","2012-09-14 01:25:41","2012-09-14 01:25:41","","FamilyPortraitPhotographer015","","trash","open","open","","familyportraitphotographer015","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer015.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("379","1","2012-09-14 01:26:01","2012-09-14 01:26:01","","FamilyPortraitPhotographer017","","trash","open","open","","familyportraitphotographer017","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer017.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("380","1","2012-09-14 01:26:12","2012-09-14 01:26:12","","FamilyPortraitPhotographer018","","trash","open","open","","familyportraitphotographer018","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer018.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("381","1","2012-09-14 01:26:21","2012-09-14 01:26:21","","FamilyPortraitPhotographer019","","trash","open","open","","familyportraitphotographer019","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer019.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("382","1","2012-09-14 01:26:30","2012-09-14 01:26:30","","FamilyPortraitPhotographer020","","trash","open","open","","familyportraitphotographer020","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer020.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("385","1","2012-09-14 01:27:05","2012-09-14 01:27:05","","FamilyPortraitPhotographer023","","trash","open","open","","familyportraitphotographer023","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer023.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("386","1","2012-09-14 01:27:14","2012-09-14 01:27:14","","FamilyPortraitPhotographer024","","trash","open","open","","familyportraitphotographer024-2","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0241.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("387","1","2012-09-14 01:27:21","2012-09-14 01:27:21","","FamilyPortraitPhotographer025","","trash","open","open","","familyportraitphotographer025-2","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0251.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("388","1","2012-09-14 01:27:38","2012-09-14 01:27:38","","FamilyPortraitPhotographer026","","trash","open","open","","familyportraitphotographer026-2","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0261.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("389","1","2012-09-14 01:27:53","2012-09-14 01:27:53","","FamilyPortraitPhotographer027","","trash","open","open","","familyportraitphotographer027-2","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0271.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("390","1","2012-09-14 01:28:07","2012-09-14 01:28:07","","FamilyPortraitPhotographer028","","trash","open","open","","familyportraitphotographer028-2","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0281.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("391","1","2012-09-14 01:28:24","2012-09-14 01:28:24","","FamilyPortraitPhotographer029","","trash","open","open","","familyportraitphotographer029-2","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0291.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("392","1","2012-09-14 01:28:42","2012-09-14 01:28:42","","FamilyPortraitPhotographer030","","trash","open","open","","familyportraitphotographer030-2","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0301.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("393","1","2012-09-14 01:29:06","2012-09-14 01:29:06","","FamilyPortraitPhotographer031","","trash","open","open","","familyportraitphotographer031-2","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0311.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("394","1","2012-09-14 01:29:22","2012-09-14 01:29:22","","FamilyPortraitPhotographer032","","trash","open","open","","familyportraitphotographer032-2","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0321.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("395","1","2012-09-14 01:29:38","2012-09-14 01:29:38","","FamilyPortraitPhotographer033","","trash","open","open","","familyportraitphotographer033-2","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0331.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("396","1","2012-09-14 01:29:59","2012-09-14 01:29:59","","FamilyPortraitPhotographer034","","trash","open","open","","familyportraitphotographer034-2","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0341.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("398","1","2012-09-14 01:30:22","2012-09-14 01:30:22","","FamilyPortraitPhotographer036","","trash","open","open","","familyportraitphotographer036-2","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0361.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("400","1","2012-09-14 01:30:59","2012-09-14 01:30:59","","FamilyPortraitPhotographer038","","trash","open","open","","familyportraitphotographer038-2","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0381.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("401","1","2012-09-14 01:31:14","2012-09-14 01:31:14","","FamilyPortraitPhotographer039","","trash","open","open","","familyportraitphotographer039-2","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0391.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("402","1","2012-09-14 01:31:36","2012-09-14 01:31:36","","FamilyPortraitPhotographer040","","trash","open","open","","familyportraitphotographer040-2","","","2012-09-21 00:25:56","2012-09-21 00:25:56","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0401.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("403","1","2012-09-14 01:31:52","2012-09-14 01:31:52","","FamilyPortraitPhotographer041","","trash","open","open","","familyportraitphotographer041-2","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0411.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("404","1","2012-09-14 01:32:05","2012-09-14 01:32:05","","FamilyPortraitPhotographer042","","trash","open","open","","familyportraitphotographer042-2","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0421.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("406","1","2012-09-14 01:32:47","2012-09-14 01:32:47","","FamilyPortraitPhotographer044","","trash","open","open","","familyportraitphotographer044-2","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0441.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("407","1","2012-09-14 01:32:59","2012-09-14 01:32:59","","FamilyPortraitPhotographer045","","trash","open","open","","familyportraitphotographer045-2","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0451.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("408","1","2012-09-14 01:33:14","2012-09-14 01:33:14","","FamilyPortraitPhotographer046","","trash","open","open","","familyportraitphotographer046-2","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0461.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("409","1","2012-09-14 01:33:31","2012-09-14 01:33:31","","FamilyPortraitPhotographer047","","trash","open","open","","familyportraitphotographer047-2","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0471.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("410","1","2012-09-14 01:33:53","2012-09-14 01:33:53","","FamilyPortraitPhotographer048","","trash","open","open","","familyportraitphotographer048-2","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0481.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("411","1","2012-09-14 01:34:14","2012-09-14 01:34:14","","FamilyPortraitPhotographer049","","trash","open","open","","familyportraitphotographer049-2","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0491.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("412","1","2012-09-14 01:34:31","2012-09-14 01:34:31","","FamilyPortraitPhotographer050","","trash","open","open","","familyportraitphotographer050-2","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0501.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("414","1","2012-09-14 01:35:17","2012-09-14 01:35:17","","FamilyPortraitPhotographer052","","trash","open","open","","familyportraitphotographer052-2","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0521.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("415","1","2012-09-14 01:35:43","2012-09-14 01:35:43","","FamilyPortraitPhotographer053","","trash","open","open","","familyportraitphotographer053-2","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0531.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("418","1","2012-09-14 01:36:33","2012-09-14 01:36:33","","FamilyPortraitPhotographer056","","trash","open","open","","familyportraitphotographer056-2","","","2012-10-05 01:07:30","2012-10-05 01:07:30","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0561.jpg","18","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("419","1","2012-09-14 01:36:55","2012-09-14 01:36:55","","FamilyPortraitPhotographer057","","trash","open","open","","familyportraitphotographer057-2","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer0571.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("421","1","2012-09-14 01:37:32","2012-09-14 01:37:32","","FamilyPortraitPhotographer059","","trash","open","open","","familyportraitphotographer059","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer059.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("422","1","2012-09-14 01:38:01","2012-09-14 01:38:01","","FamilyPortraitPhotographer060","","trash","open","open","","familyportraitphotographer060","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer060.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("424","1","2012-09-14 01:38:37","2012-09-14 01:38:37","","FamilyPortraitPhotographer062","","trash","open","open","","familyportraitphotographer062","","","2012-10-05 01:07:30","2012-10-05 01:07:30","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer062.jpg","15","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("425","1","2012-09-14 01:38:49","2012-09-14 01:38:49","","FamilyPortraitPhotographer063","","trash","open","open","","familyportraitphotographer063","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer063.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("426","1","2012-09-14 01:39:06","2012-09-14 01:39:06","","FamilyPortraitPhotographer064","","trash","open","open","","familyportraitphotographer064","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer064.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("428","1","2012-09-14 01:39:28","2012-09-14 01:39:28","","FamilyPortraitPhotographer066","","trash","open","open","","familyportraitphotographer066","","","2012-10-05 01:07:30","2012-10-05 01:07:30","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer066.jpg","13","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("431","1","2012-09-14 01:40:49","2012-09-14 01:40:49","","FamilyPortraitPhotographer069","","trash","open","open","","familyportraitphotographer069","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer069.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("432","1","2012-09-14 01:41:13","2012-09-14 01:41:13","","FamilyPortraitPhotographer070","","trash","open","open","","familyportraitphotographer070","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer070.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("433","1","2012-09-14 01:41:33","2012-09-14 01:41:33","","FamilyPortraitPhotographer071","","trash","open","open","","familyportraitphotographer071","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer071.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("438","1","2012-09-14 01:43:09","2012-09-14 01:43:09","","FamilyPortraitPhotographer076","","trash","open","open","","familyportraitphotographer076","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer076.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("439","1","2012-09-14 01:43:27","2012-09-14 01:43:27","","FamilyPortraitPhotographer077","","trash","open","open","","familyportraitphotographer077","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer077.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("440","1","2012-09-14 01:43:38","2012-09-14 01:43:38","","FamilyPortraitPhotographer078","","trash","open","open","","familyportraitphotographer078","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer078.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("441","1","2012-09-14 01:43:57","2012-09-14 01:43:57","","FamilyPortraitPhotographer079","","trash","open","open","","familyportraitphotographer079","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer079.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("442","1","2012-09-14 01:44:14","2012-09-14 01:44:14","","FamilyPortraitPhotographer080","","trash","open","open","","familyportraitphotographer080","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer080.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("444","1","2012-09-14 01:44:46","2012-09-14 01:44:46","","FamilyPortraitPhotographer082","","trash","open","open","","familyportraitphotographer082","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer082.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("445","1","2012-09-14 01:45:01","2012-09-14 01:45:01","","FamilyPortraitPhotographer083","","trash","open","open","","familyportraitphotographer083","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer083.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("447","1","2012-09-14 01:45:25","2012-09-14 01:45:25","","FamilyPortraitPhotographer085","","trash","open","open","","familyportraitphotographer085","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer085.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("448","1","2012-09-14 01:45:48","2012-09-14 01:45:48","","FamilyPortraitPhotographer086","","trash","open","open","","familyportraitphotographer086","","","2012-10-05 01:07:30","2012-10-05 01:07:30","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer086.jpg","4","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("452","1","2012-09-14 01:46:49","2012-09-14 01:46:49","","FamilyPortraitPhotographer090","","trash","open","open","","familyportraitphotographer090","","","2012-09-21 00:25:55","2012-09-21 00:25:55","","345","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FamilyPortraitPhotographer090.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("453","1","2012-09-12 07:33:03","2012-09-12 07:33:03","","Family Portraits","","inherit","open","open","","81-revision-2","","","2012-09-12 07:33:03","2012-09-12 07:33:03","","81","http://www.livingimagephotography.com.au/81-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("454","1","2012-09-14 03:19:23","2012-09-14 03:19:23","lorem ipsum dolor cori punat mu etu satona chuknat tono sao","test","","trash","closed","closed","","test","","","2012-10-09 05:23:20","2012-10-09 05:23:20","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=454","0","gallery","","0");
INSERT INTO wp_posts VALUES("455","1","2012-09-14 03:21:01","2012-09-14 03:21:01","","test1024x500","","trash","open","open","","test1024x500","","","2012-09-14 09:51:51","2012-09-14 09:51:51","","454","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/test1024x500.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("456","1","2012-09-14 03:21:12","2012-09-14 03:21:12","","test1024x600","","trash","open","open","","test1024x600","","","2012-09-14 09:51:51","2012-09-14 09:51:51","","454","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/test1024x600.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("459","1","2012-09-13 04:28:05","2012-09-13 04:28:05","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <h6>-Simon Carroll</h6> \n[/quote]\n<br />\n","Welcome","","inherit","open","open","","6-revision-27","","","2012-09-13 04:28:05","2012-09-13 04:28:05","","6","http://www.livingimagephotography.com.au/6-revision-27/","0","revision","","0");
INSERT INTO wp_posts VALUES("841","1","2012-09-21 06:20:08","2012-09-21 06:20:08","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <h6>-Simon Carroll</h6> \n[/quote]\n<br />\n","Welcome","","inherit","open","open","","6-revision-33","","","2012-09-21 06:20:08","2012-09-21 06:20:08","","6","http://www.livingimagephotography.com.au/6-revision-33/","0","revision","","0");
INSERT INTO wp_posts VALUES("462","1","2012-09-14 09:56:44","2012-09-14 09:56:44","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <h6>-Simon Carroll</h6> \n[/quote]\n<br />\n","Welcome","","inherit","open","open","","6-revision-28","","","2012-09-14 09:56:44","2012-09-14 09:56:44","","6","http://www.livingimagephotography.com.au/6-revision-28/","0","revision","","0");
INSERT INTO wp_posts VALUES("463","1","2012-09-15 03:49:15","2012-09-15 03:49:15","","Individual","","trash","closed","closed","","individual","","","2012-10-09 02:01:54","2012-10-09 02:01:54","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=463","0","gallery","","0");
INSERT INTO wp_posts VALUES("465","1","2012-09-15 03:50:21","2012-09-15 03:50:21","","IndividualPortraits-MelbourneSydney16","","trash","open","open","","individualportraits-melbournesydney16","","","2012-09-21 04:30:29","2012-09-21 04:30:29","","463","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/IndividualPortraits-MelbourneSydney16.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("466","1","2012-09-15 03:50:31","2012-09-15 03:50:31","","IndividualPortraits-MelbourneSydney17","","trash","open","open","","individualportraits-melbournesydney17","","","2012-09-21 04:30:29","2012-09-21 04:30:29","","463","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/IndividualPortraits-MelbourneSydney17.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("467","1","2012-09-15 03:50:41","2012-09-15 03:50:41","","IndividualPortraits-MelbourneSydney18","","trash","open","open","","individualportraits-melbournesydney18","","","2012-09-21 04:30:29","2012-09-21 04:30:29","","463","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/IndividualPortraits-MelbourneSydney18.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("470","1","2012-09-15 03:51:02","2012-09-15 03:51:02","","IndividualPortraits-MelbourneSydney21","","trash","open","open","","individualportraits-melbournesydney21","","","2012-09-21 04:30:29","2012-09-21 04:30:29","","463","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/IndividualPortraits-MelbourneSydney21.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("474","1","2012-09-15 03:51:30","2012-09-15 03:51:30","","IndividualPortraits-MelbourneSydney25","","trash","open","open","","individualportraits-melbournesydney25","","","2012-09-21 04:30:29","2012-09-21 04:30:29","","463","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/IndividualPortraits-MelbourneSydney25.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("476","1","2012-09-15 03:51:50","2012-09-15 03:51:50","","IndividualPortraits-MelbourneSydney01","","trash","open","open","","individualportraits-melbournesydney01","","","2012-09-21 04:30:29","2012-09-21 04:30:29","","463","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/IndividualPortraits-MelbourneSydney01.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("481","1","2012-09-15 03:52:34","2012-09-15 03:52:34","","IndividualPortraits-MelbourneSydney06","","trash","open","open","","individualportraits-melbournesydney06","","","2012-09-21 04:30:29","2012-09-21 04:30:29","","463","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/IndividualPortraits-MelbourneSydney06.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("482","1","2012-09-15 03:52:44","2012-09-15 03:52:44","","IndividualPortraits-MelbourneSydney07","","trash","open","open","","individualportraits-melbournesydney07","","","2012-09-21 04:30:29","2012-09-21 04:30:29","","463","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/IndividualPortraits-MelbourneSydney07.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("485","1","2012-09-15 03:53:17","2012-09-15 03:53:17","","IndividualPortraits-MelbourneSydney10","","trash","open","open","","individualportraits-melbournesydney10","","","2012-09-21 04:30:29","2012-09-21 04:30:29","","463","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/IndividualPortraits-MelbourneSydney10.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("490","1","2012-09-12 07:34:22","2012-09-12 07:34:22","","Individual Portraits","","inherit","open","open","","83-revision-2","","","2012-09-12 07:34:22","2012-09-12 07:34:22","","83","http://www.livingimagephotography.com.au/83-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("491","1","2012-09-15 04:35:04","2012-09-15 04:35:04","","New Born","","trash","closed","closed","","new-born","","","2012-10-09 02:01:54","2012-10-09 02:01:54","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=491","0","gallery","","0");
INSERT INTO wp_posts VALUES("497","1","2012-09-15 04:36:54","2012-09-15 04:36:54","","NewbornPortraitPhotographer031","","trash","open","open","","newbornportraitphotographer031","","","2012-09-21 03:03:35","2012-09-21 03:03:35","","491","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/NewbornPortraitPhotographer031.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("501","1","2012-09-15 04:38:09","2012-09-15 04:38:09","","NewbornPortraitPhotographer002","","trash","open","open","","newbornportraitphotographer002","","","2012-09-21 03:03:35","2012-09-21 03:03:35","","491","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/NewbornPortraitPhotographer002.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("507","1","2012-09-15 04:40:43","2012-09-15 04:40:43","","NewbornPortraitPhotographer008","","trash","open","open","","newbornportraitphotographer008","","","2012-09-21 03:03:35","2012-09-21 03:03:35","","491","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/NewbornPortraitPhotographer008.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("511","1","2012-09-15 04:41:39","2012-09-15 04:41:39","","NewbornPortraitPhotographer012","","trash","open","open","","newbornportraitphotographer012","","","2012-09-21 03:03:35","2012-09-21 03:03:35","","491","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/NewbornPortraitPhotographer012.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("521","1","2012-09-15 04:43:34","2012-09-15 04:43:34","","NewbornPortraitPhotographer022","","trash","open","open","","newbornportraitphotographer022","","","2012-09-21 03:03:35","2012-09-21 03:03:35","","491","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/NewbornPortraitPhotographer022.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("525","1","2012-09-12 07:38:44","2012-09-12 07:38:44","","Newborn Portraits","","inherit","open","open","","85-revision-2","","","2012-09-12 07:38:44","2012-09-12 07:38:44","","85","http://www.livingimagephotography.com.au/85-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("526","1","2012-09-15 04:57:08","2012-09-15 04:57:08","","Newborn Portraits","","inherit","open","open","","85-revision-3","","","2012-09-15 04:57:08","2012-09-15 04:57:08","","85","http://www.livingimagephotography.com.au/85-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("527","1","2012-09-15 04:58:02","2012-09-15 04:58:02","","Pregnancy","","trash","closed","closed","","pregnancy","","","2012-10-09 02:01:54","2012-10-09 02:01:54","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=527","0","gallery","","0");
INSERT INTO wp_posts VALUES("534","1","2012-09-15 05:15:24","2012-09-15 05:15:24","","PregnancyPortraitPhotographer007","","trash","open","open","","pregnancyportraitphotographer007","","","2012-09-21 03:09:47","2012-09-21 03:09:47","","527","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/PregnancyPortraitPhotographer007.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("536","1","2012-09-15 05:16:09","2012-09-15 05:16:09","","PregnancyPortraitPhotographer009","","trash","open","open","","pregnancyportraitphotographer009","","","2012-09-21 03:09:47","2012-09-21 03:09:47","","527","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/PregnancyPortraitPhotographer009.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("542","1","2012-09-12 07:39:54","2012-09-12 07:39:54","","Pregnancy Portraits","","inherit","open","open","","87-revision-2","","","2012-09-12 07:39:54","2012-09-12 07:39:54","","87","http://www.livingimagephotography.com.au/87-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("543","1","2012-09-15 05:34:21","2012-09-15 05:34:21","This will be a fun and exciting experience for you and your loved ones. To get the ball rolling simply make contact with us via our online form or by phone and we can chat with you about creating amazing portraits that you will treasure forever. Here’s what to expect when you work with us;\n","Your Experience","","inherit","open","open","","12-autosave","","","2012-09-15 05:34:21","2012-09-15 05:34:21","","12","http://www.livingimagephotography.com.au/12-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("544","1","2012-09-08 04:43:56","2012-09-08 04:43:56","","Your Experience","","inherit","open","open","","12-revision-2","","","2012-09-08 04:43:56","2012-09-08 04:43:56","","12","http://www.livingimagephotography.com.au/12-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("545","1","2012-09-15 06:09:31","2012-09-15 06:09:31","Depending on the type of look and feel you are looking for with your portraits, we will determine what clothing options will work best for you. At the time of your booking, we will discuss with you, the best clothing options for you and your family.  However, here are a few great tips to get you started….\n\n<strong><em>Hair and Make-Up</em></strong>\n\nYour hair and make-up should also be worn as you would normally wear it. However, do take a moment to have a look at everyone’s hair; is anyone due for a hair cut or colour? If so, make sure you book them in before your session. We want to capture images of the real you, so no need to go over the top with make-up if you don’t normally wear it.  We retouch all of the work that you purchase, so if there is something that you’re not entirely happy with in your complexion then we can fix it.\n\n<strong><em>What to wear</em></strong>\n\nIt is important that you feel comfortable in whatever it is that you decide to wear, because if you feel good you will look good.\n\nAs a rule of thumb, smart casual is the best way to go. Guys look great in collared shirts, long flowing dresses look stunning on the girls and little kids look great in bright colours. Don’t be afraid to mix it up a bit.\n\nKeep in mind what everybody is wearing to maintain harmony with the overall look, but more importantly steer away from heavy stripes, spots or large logos. Try not to have an exact match of clothing for everyone unless you particularly wish to theme the images.  Instead, use similar colours in the clothing for everyone - two to three co-ordinated colours work best.\n\nConsider your finger nails and toe nails (if you’re wearing open toed footwear), prepare them in line with your own personal style. If you wear glasses, be sure to bring a pair with clear lenses.\n\nDon’t be worried if you don’t have a wardrobe that rivals the celebrities, sometimes the simplest of clothing can be the most effective. But do make sure all your clothes are clean and pressed. It’s important for everyone to wear flattering clothing that fits correctly.\n\nFeel free to bring a couple of out fits to your session; your photographer will help you choose the most appropriate one. It also gives you the opportunity to mix it up a little bit, you can change clothing half way through your session to add some additional variety to your shots.\n\n<strong><em>Getting the kids ready</em></strong>\n\nLittle ones can sometimes be the trickiest to prepare for a photo session. They quickly pick up on stress and may become nervous, so always keep it fun and don’t rehearse the sitting.\n\nWhen booking your session keep in mind your children’s sleep times. No one likes to smile and have fun when they are tired and ready for a nap.\n\nMake sure you arrive at your session early to give your child time to get to know your photographer and used to their new surroundings. During the session if you want to help with making them smile, it works really well when parents stand behind the photographer so young ones look in the direction of the camera when you’re calling for their attention.\n\nBring along their favorite toy, this can add an extra level of sentiment to your photographs.\n\n<strong><em>Animals</em></strong>\n\nWE all want our animals to look their best for their moment in the spot light. However, it is not necessary to have them groomed in the days leading up to the shoot, however, if you prefer to do this- Great! Personalize your shoot- bring along your pets favorite toys to be incorporated into some of the photographs. Of course, we have our own collection of toys in studio as well! Please bring along your pet\'s favorite treats to the session as well!\n\nAt this point, it is a good idea to ask yourself; Would you like to be in same of the photographs? Are there particular personality shots you would like us to capture? How were you thinking to display your Fine Art around your home?","Prepairing for your session","","publish","open","closed","","prepairing-for-your-session","","","2012-10-10 06:57:24","2012-10-10 06:57:24","","12","http://www.livingimagephotography.com.au/?page_id=545","0","page","","0");
INSERT INTO wp_posts VALUES("546","1","2012-09-15 05:43:03","2012-09-15 05:43:03","","Prepairing for your session","","inherit","open","open","","545-revision","","","2012-09-15 05:43:03","2012-09-15 05:43:03","","545","http://www.livingimagephotography.com.au/545-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("547","1","2012-09-15 06:23:08","2012-09-15 06:23:08","This is the FUN part!\n\nYou will spend up to 1 and ½ hour with your photographer in our studio capturing beautiful photographs based on the plan we made during your consultation. We will shoot a great variety of images to make building your artwork easy and fun.\n\nOur photographers have many years of experience in portrait photography; they are fantastic with making the shyest of people feel relaxed and comfortable. All you need to do is relax, have fun and enjoy the experience with your loved ones.\n\nShortly after your session you will enjoy your ordering session, which is just as much fun as your shoot.\n\n<br />\n\n<div align=\"\">\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/temp1.1.jpg\" />\n</div>\n","Your Shoot","","publish","open","closed","","your-shoot","","","2012-10-11 02:07:30","2012-10-11 02:07:30","","12","http://www.livingimagephotography.com.au/?page_id=547","0","page","","0");
INSERT INTO wp_posts VALUES("548","1","2012-09-15 06:09:31","2012-09-15 06:09:31","Depending on the type of look and feel you are looking for with your portraits, we will determine what clothing options will work best for you. At the time of your booking, we will discuss with you, the best clothing options for you and your family.  However, here are a few great tips to get you started….\n\n<em>Hair and Make-Up</em>\n\nYour hair and make-up should also be worn as you would normally wear it. However, do take a moment to have a look at everyone’s hair; is anyone due for a hair cut or colour? If so, make sure you book them in before your session. We want to capture images of the real you, so no need to go over the top with make-up if you don’t normally wear it.  We retouch all of the work that you purchase, so if there is something that you’re not entirely happy with in your complexion then we can fix it.\n\n<em>What to wear</em>\n\nIt is important that you feel comfortable in whatever it is that you decide to wear, because if you feel good you will look good.\n\nAs a rule of thumb, smart casual is the best way to go. Guys look great in collared shirts, long flowing dresses look stunning on the girls and little kids look great in bright colours. Don’t be afraid to mix it up a bit.\n\nKeep in mind what everybody is wearing to maintain harmony with the overall look, but more importantly steer away from heavy stripes, spots or large logos. Try not to have an exact match of clothing for everyone unless you particularly wish to theme the images.  Instead, use similar colours in the clothing for everyone - two to three co-ordinated colours work best.\n\nConsider your finger nails and toe nails (if you’re wearing open toed footwear), prepare them in line with your own personal style. If you wear glasses, be sure to bring a pair with clear lenses.\n\nDon’t be worried if you don’t have a wardrobe that rivals the celebrities, sometimes the simplest of clothing can be the most effective. But do make sure all your clothes are clean and pressed. It’s important for everyone to wear flattering clothing that fits correctly.\n\nFeel free to bring a couple of out fits to your session; your photographer will help you choose the most appropriate one. It also gives you the opportunity to mix it up a little bit, you can change clothing half way through your session to add some additional variety to your shots.\n\n<em>Getting the kids ready</em>\n\nLittle ones can sometimes be the trickiest to prepare for a photo session. They quickly pick up on stress and may become nervous, so always keep it fun and don’t rehearse the sitting.\n\nWhen booking your session keep in mind your children’s sleep times. No one likes to smile and have fun when they are tired and ready for a nap.\n\nMake sure you arrive at your session early to give your child time to get to know your photographer and used to their new surroundings. During the session if you want to help with making them smile, it works really well when parents stand behind the photographer so young ones look in the direction of the camera when you’re calling for their attention.\n\nBring along their favourite toy, this can add an extra level of sentiment to your photographs.","Prepairing for your session","","inherit","open","open","","545-revision-2","","","2012-09-15 06:09:31","2012-09-15 06:09:31","","545","http://www.livingimagephotography.com.au/545-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("549","1","2012-09-15 06:15:42","2012-09-15 06:15:42","This is the FUN part!\n\nYou will spend up to 1 and ½ hour with your photographer in our studio capturing beautiful photographs based on the plan we made during your consultation. We will shoot a great variety of images to make building your artwork easy and fun.\n\nOur photographers have many years of experience in portrait photography; they are fantastic with making the shyest of people feel relaxed and comfortable. All you need to do is relax, have fun and enjoy the experience with your loved ones.\n\nShortly after your session you will enjoy your ordering session, which is just as much fun as your shoot.\n","Your portrait session","","inherit","open","open","","547-revision","","","2012-09-15 06:15:42","2012-09-15 06:15:42","","547","http://www.livingimagephotography.com.au/547-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("550","1","2012-09-15 06:36:14","2012-09-15 06:36:14","Now it’s time for you to see the collection of your wonderful images from your photo shoot.\n\nOur trained designers will walk you through your images and once you have chosen your favourites they will help you choose the best display options. There are lots of different options, so we are sure we have at least one that you will love.\n\nIf there is a special spot in the house where you would like to hang your images, feel free (in fact we encourage you) to bring in a digital image of this space. We can use this image to show you exactly how your chosen collection will look on your wall at home – to scale, and in your desired finish. This takes out all the guess work, it will ensure you feel happy and comfortable with the look of your new artwork.\n\n\n<div align=\"\">\n\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/temp2.jpg\" />\n\n</div>","Design Consulation","","publish","open","closed","","design-consulation","","","2012-10-11 02:06:34","2012-10-11 02:06:34","","12","http://www.livingimagephotography.com.au/?page_id=550","0","page","","0");
INSERT INTO wp_posts VALUES("551","1","2012-09-15 06:36:11","2012-09-15 06:36:11","Now it’s time for you to see the collection of your wonderful images from your photo shoot.\n\nOur trained designers will walk you through your images and once you have chosen your favourites they will help you choose the best display options. There are lots of different options, so we are sure we have at least one that you will love.\n\nIf there is a special spot in the house where you would like to hang your images, feel free (in fact we encourage you) to bring in a digital image of this space. We can use this image to show you exactly how your chosen collection will look on your wall at home – to scale, and in your desired finish. This takes out all the guess work, it will ensure you feel happy and comfortable with the look of your new artwork.","Your viewing and ordering session","","inherit","open","open","","550-revision","","","2012-09-15 06:36:11","2012-09-15 06:36:11","","550","http://www.livingimagephotography.com.au/550-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("552","1","2012-09-15 06:47:29","2012-09-15 06:47:29","This is the <strong>BEST</strong> part.\n\nCollecting your order is the most reward step of all. Every image that is ordered is carefully retouched and enhanced to ensure the highest of image quality. Your finished piece of art not only looks good but will last a life time – we guarantee it for life.\n\nOnce you have it proudly displayed in your home, you will be the envy of all of your friends. There is no better way to make a house a home then with beautiful warm images of your loved ones.\n\n<div align=\"\">\n\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/temp3.jpg\" />\n\n</div>","Collecting your Fine Art","","publish","open","closed","","collecting-your-fine-art","","","2012-10-11 02:06:01","2012-10-11 02:06:01","","12","http://www.livingimagephotography.com.au/?page_id=552","0","page","","0");
INSERT INTO wp_posts VALUES("553","1","2012-09-15 06:44:17","2012-09-15 06:44:17","This is the BEST part.\n\nCollecting your order is the most reward step of all. Every image that is ordered is carefully retouched and enhanced to ensure the highest of image quality. Your finished piece of art not only looks good but will last a life time – we guarantee it for life.\n\nOnce you have it proudly displayed in your home, you will be the envy of all of your friends. There is no better way to make a house a home then with beautiful warm images of your loved ones.","Collecting your order","","inherit","open","open","","552-revision","","","2012-09-15 06:44:17","2012-09-15 06:44:17","","552","http://www.livingimagephotography.com.au/552-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("554","1","2012-09-15 06:49:24","2012-09-15 06:49:24"," ","","","publish","open","open","","554","","","2012-10-11 01:12:14","2012-10-11 01:12:14","","12","http://www.livingimagephotography.com.au/?p=554","24","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("555","1","2012-09-15 06:49:24","2012-09-15 06:49:24","","Design Consultation","","publish","open","open","","555","","","2012-10-11 01:12:14","2012-10-11 01:12:14","","12","http://www.livingimagephotography.com.au/?p=555","23","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("556","1","2012-09-15 06:49:24","2012-09-15 06:49:24"," ","","","publish","open","open","","556","","","2012-10-11 01:12:14","2012-10-11 01:12:14","","12","http://www.livingimagephotography.com.au/?p=556","22","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("557","1","2012-09-15 06:49:24","2012-09-15 06:49:24"," ","","","publish","open","open","","557","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","12","http://www.livingimagephotography.com.au/?p=557","21","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("559","1","2012-09-18 23:40:06","2012-09-18 23:40:06","An important part of the process is the cost. We feel it’s important that you receive the most value for your investment, and whatever you decide to purchase fits within your budget. We encourage you to feel comfortable with your order.\n\nAll of the work that we produce for you is finished artwork, ready to hang or display, and comes with a life time guarantee. With this in mind here is a guide to our pricing.\n\nOur portrait fee is $150, which includes;\n<ul>\n	<li>Your pre portrait consultation in our studio or on the phone (allow 30mins),</li>\n	<li>Your creative portrait session, in our studio (allow an hour and a half),</li>\n	<li>and your ordering session, in our studio (allow up to 2 hours)</li>\n</ul>\nWe aim to capture anywhere between 40 to 100 <em><span style=\"text-decoration: underline;\">different</span></em> images during your portrait session. We will take you through the whole collection during your ordering session for you to select your absolute favourites.\n\nOur 10 inch matted portraits start from as little as $195. We have a whole range display options to suit all price points and budgets. Our display options include;\n<ul>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/fine-art-decor/\">Wall Portraits &amp; Collections</a></li>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/fine-art-albums/\">Hand Bound Albums &amp; Story Books</a></li>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/fine-art-collections-box/\">Desktop Portraits &amp; Matted Prints</a></li>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/gifts/\">Gift Certificates for your friends and loved ones</a></li>\n</ul>\n<span style=\"color: #ff0000;\">Take this opportunity to <a href=\"#\">book your session now</a>, and start this exciting journey.</span>","Pricing","","inherit","open","open","","15-autosave","","","2012-09-18 23:40:06","2012-09-18 23:40:06","","15","http://www.livingimagephotography.com.au/15-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("560","1","2012-09-08 04:44:35","2012-09-08 04:44:35","","Pricing","","inherit","open","open","","15-revision-2","","","2012-09-08 04:44:35","2012-09-08 04:44:35","","15","http://www.livingimagephotography.com.au/15-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("561","1","2012-09-15 07:09:00","2012-09-15 07:09:00","An important part of the process is the cost. We feel it’s important that you receive the most value for your investment, and whatever you decide to purchase fits within your budget. We encourage you to feel comfortable with your order.\n\nAll of the work that we produce for you is finished artwork, ready to hang or display, and comes with a life time guarantee. With this in mind here is a guide to our pricing.\n\nOur portrait fee is $150, which includes;\n<ul>\n	<li>Your pre portrait consultation in our studio or on the phone (allow 30mins),</li>\n	<li>Your creative portrait session, in our studio (allow an hour and a half),</li>\n	<li>and your ordering session, in our studio (allow up to 2 hours)</li>\n</ul>\nWe aim to capture anywhere between 40 to 100 <em><span style=\"text-decoration: underline;\">different</span></em> images during your portrait session. We will take you through the whole collection during your ordering session for you to select your absolute favourites.\n\nOur 10 inch matted portraits start from as little as $195. We have a whole range display options to suit all price points and budgets. Our display options include;\n<ul>\n	<li><a href=\"#\">Wall Portraits &amp; Collections</a></li>\n	<li><a href=\"#\">Hand Bound Albums &amp; Story Books</a></li>\n	<li><a href=\"#\">Desktop Portraits &amp; Matted Prints</a></li>\n	<li><a href=\"#\">Gift Certificates for your friends and loved ones</a></li>\n</ul>\n<span style=\"color: #ff0000;\">Take this opportunity to <a href=\"#\">book your session now</a>, and start this exciting journey.</span>","Pricing","","inherit","open","open","","15-revision-3","","","2012-09-15 07:09:00","2012-09-15 07:09:00","","15","http://www.livingimagephotography.com.au/15-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("562","1","2012-10-11 01:28:18","2012-10-11 01:28:18","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\">\n[quote]Just wanted to let both you and Simon know how wonderful my pictures are. I gave them to Tim on the weekend as a thank you for all his support over the last five years of my degree and also because it was the 35th anniversary of when we first started dating.\n\nHe LOVES the photos, really thinks they are amazing!!!!!!! Not only is he impressed with how I look he is also hugely impressed with the quality of the images, the presentation and just how professional it all looks\n\nThank you again for everything. I will definitely recommend you to everyone I meet.\n<p style=\"text-align: right\";><strong>-Sharon Bickford</strong></p>[/quote]\n<br />\n[quote]Before we arrived at Living Image Photography I was a little nervous, but as soon as we walked into the studio the nervous disappeared. The studio is a relaxing environment where Amy and Simon make you feel very welcome,  so you can be yourself. Derek and I had such a fun afternoon. At our viewing, there was so many good photos to chose from and the viewing room setup made it so easy to be able to select the photos, frames and sizes which would fit perfectly in our home. \nWe are so happy with our photos, and would recommend Living Image Photography to anyone who wants to capture those very special moments in your life – this is their speciality.\n<p style=\"text-align: right\";><strong>-Kim & Derek</strong></p>[/quote]\n<br />\n[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met</p>\n<br />\n<p style=\"text-align: right;\"><strong>-Michelle Matthewman </strong></p>[/quote]\n<p style=\"text-align: left;\">[quote]The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\n<br />\n<p style=\"text-align: right;\"><strong>- James &amp; Kristen Green </strong></p>[/quote]\n[quote]Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n<p style=\"text-align: right\";><strong>Cheers,\n</strong><strong>Jen Drysdale</strong></p>[/quote]\n\n[quote]Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinely had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thank you Simon.\n<p style=\"text-align: right\";><strong>-Maureen Wills </strong></p>[/quote]\n\n\n[quote]Dear Simon and Amy,\n\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\n\n\n<p style=\"text-align:right\";><strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></p>[/quote]\n\n\n[quote]I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\n<p style=\"text-align: right\";><strong>-Carly Hansen</strong></p>[/quote]\n\n\n[quote]Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\n<strong>See it here</strong>&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\"><h6>The Strands Of Me</h6></a> </em>[/quote]\n\n\n[quote]Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<p style=\"text-align: right\";><strong>Cheers\nJess and Ben</strong>[/quote]\n\n\n[quote]Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderful photos had been captured of our ugly mugs!\n\n<p style=\"text-align: right\";><strong>Thanks again,\nAnne and Owen Kruger</strong></p>[/quote]\n\n\n[quote]We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\nIt was a great day – one I would recommend to anyone\n\n<p style=\"text-align: right\";><strong>Thanks so much,\nSimone Faulkner</strong></p>[/quote]\n\n\n[quote]Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!\n\n<p style=\"text-align: right\";><strong>The Trusso Family</strong></p>[/quote]\n\n\n[quote]Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! \n\n<p style=\"text-align:right\";><strong>Herman and Sol</strong></p>[/quote]\n\n\n[quote]Great photos! Great Service! Very professional people, very happy with everything! \n\n<p style=\"text-align: right\";><strong>Thanks\nHenneker Family</strong></p>[/quote]\n\n\n[quote]Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!\n\n<p style=\"text-align:right\";><strong>Mohamed Family</strong></p>[/quote]\n\n\n[quote]Hey guys!\n\nThank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.\n\n<strong><p style=\"text-align: right\";>Cheers,\nRobert Hart</strong></p>[/quote]\n\n\n[quote]Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.\n\n<p style=\"text-align: right\";><strong>Lyn and Rocco</p></strong>[/quote]\n\n\n[quote]A very pleasant experience. Living Image was very professional and accommodating.\n\n<p style=\"text-align:right\";><strong>Marty</p></strong>[/quote]\n\n[quote]We had a good time, very professional and friendly people.\n\n<strong><p style=\"text-align:right\";>Thank-you.\nJorge and Aracely</strong></p>[/quote]\n\n[quote]Very Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n\n<p style=\"text-align:right\";><strong>Edward Rynne</strong>[/quote]\n\n[quote]Thanks, great photos. Pleasant experience.\n\n<p style=\"text-align: right\";><strong>John and Antonella Calabrese</p></strong>[/quote]\n\n[quote]We’re very happy with the photos.\n\n<strong><p style=\"text-align\";>good job,\nHenry and Patricia Adie-Cooper</strong></p>[/quote]\n\n[quote]Thanks! Brilliant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n\n<p style=\"text-align: right\";><strong>Elaine and Noel Walters</strong></p>[/quote]\n\n[quote]We had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\n<strong><p style=\"text-align: right\";>Thanks,\nDerek Wall</strong></p>[/quote]\n\n[quote]A very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. \n\n<strong><p style=\"text-align: right\";>Thank-you,\nOtto and Jeannie Ashboth</strong></p>[/quote]\n\n[quote]Thanks for the fantastic photos and for being so patient handling all the young children.\n\n<p style=\"text-align: right\";><strong>Don</strong></p>[/quote]\n\n[quote]Lovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\n<strong><p style=\"text-align: right\";>Many thanks,\nBeryl Price</p></strong>[/quote]\n\n[quote]Very, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\n<strong><p style=\"text-align:right\";>Thanks,\nDionne Smith and family</p></strong>[/quote]\n\n[quote]Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\n<strong><p style=\"text-align: right\";>Thank you,\nJohn Garbin and family </p></strong>[/quote]","Testimonials","","inherit","open","open","","18-autosave","","","2012-10-11 01:28:18","2012-10-11 01:28:18","","18","http://www.livingimagephotography.com.au/18-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("1164","1","2012-10-11 01:26:12","2012-10-11 01:26:12","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\">\n[quote]Just wanted to let both you and Simon know how wonderful my pictures are. I gave them to Tim on the weekend as a thank you for all his support over the last five years of my degree and also because it was the 35th anniversary of when we first started dating.\n\nHe LOVES the photos, really thinks they are amazing!!!!!!! Not only is he impressed with how I look he is also hugely impressed with the quality of the images, the presentation and just how professional it all looks\n\nThank you again for everything. I will definitely recommend you to everyone I meet.\n<p style=\"text-align: right\";><strong>-Sharon Bickford</strong></p>[/quote]\n<br />\n[quote]Before we arrived at Living Image Photography I was a little nervous, but as soon as we walked into the studio the nervous disappeared. The studio is a relaxing environment where Amy and Simon make you feel very welcome,  so you can be yourself. Derek and I had such a fun afternoon. At our viewing, there was so many good photos to chose from and the viewing room setup made it so easy to be able to select the photos, frames and sizes which would fit perfectly in our home. \nWe are so happy with our photos, and would recommend Living Image Photography to anyone who wants to capture those very special moments in your life – this is their speciality.\n<p style=\"text-align: right\";><strong>-Kim & Derek</strong></p>[/quote]\n<br />\n[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met</p>\n<br />\n<p style=\"text-align: right;\"><strong>-Michelle Matthewman </strong></p>[/quote]\n<p style=\"text-align: left;\">[quote]The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\n<br />\n<p style=\"text-align: right;\"><strong>- James &amp; Kristen Green </strong></p>[/quote]\n[quote]Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n<p style=\"text-align: right\";><strong>Cheers,\n</strong><strong>Jen Drysdale</strong></p>[/quote]\n\n[quote]Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinely had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thank you Simon.\n<p style=\"text-align: right\";><strong>-Maureen Wills </strong></p>[/quote]\n\n[quote]Dear Simon and Amy,\n\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\n\n\n<p style=\"text-align:right\";><strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></p>[/quote]\n\n[quote]I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\n<p style=\"text-align: right\";><strong>-Carly Hansen</strong></p>[/quote]\n\n[quote]Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\n<strong>See it here</strong>&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\"><h6>The Strands Of Me</h6></a> </em>[/quote]\n\n[quote]Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<p style=\"text-align: right\";><strong>Cheers\nJess and Ben</strong>[/quote]\n\n[quote]Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderful photos had been captured of our ugly mugs!\n\n<p style=\"text-align: right\";><strong>Thanks again,\nAnne and Owen Kruger</strong></p>[/quote]\n\n\n[quote]We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\nIt was a great day – one I would recommend to anyone\n\n<p style=\"text-align: right\";><strong>Thanks so much,\nSimone Faulkner</strong></p>[/quote]\n\n[quote]Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!\n\n<p style=\"text-align: right\";><strong>The Trusso Family</strong></p>[/quote]\n\n[quote]Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! \n\n<p style=\"text-align:right\";><strong>Herman and Sol</strong></p>[/quote]\n\n[quote]Great photos! Great Service! Very professional people, very happy with everything! \n\n<p style=\"text-align: right\";><strong>Thanks\nHenneker Family</strong></p>[/quote]\n\n[quote]Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!\n\n<p style=\"text-align:right\";><strong>Mohamed Family</strong></p>[/quote]\n\n[quote]Hey guys!\n\nThank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.\n\n<strong><p style=\"text-align: right\";>Cheers,\nRobert Hart</strong></p>[/quote]\n\n[quote]Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.\n\n<p style=\"text-align: right\";><strong>Lyn and Rocco</p></strong>[/quote]\n\n[quote]A very pleasant experience. Living Image was very professional and accommodating.\n\n<p style=\"text-align:right\";><strong>Marty</p></strong>[/quote]\n\n[quote]We had a good time, very professional and friendly people.\n\n<strong><p style=\"text-align:right\";>Thank-you.\nJorge and Aracely</strong></p>[/quote]\n\n[quote]Very Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n\n<p style=\"text-align:right\";><strong>Edward Rynne</strong>[/quote]\n\n[quote]Thanks, great photos. Pleasant experience.\n\n<p style=\"text-align: right\";><strong>John and Antonella Calabrese</p></strong>[/quote]\n\n[quote]We’re very happy with the photos.\n\n<strong><p style=\"text-align\";>good job,\nHenry and Patricia Adie-Cooper</strong></p>[/quote]\n\n[quote]Thanks! Brilliant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n\n<p style=\"text-align: right\";><strong>Elaine and Noel Walters</strong></p>[/quote]\n\n[quote]We had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\n<strong><p style=\"text-align: right\";>Thanks,\nDerek Wall</strong></p>[/quote]\n\n[quote]A very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. \n\n<strong><p style=\"text-align: right\";>Thank-you,\nOtto and Jeannie Ashboth</strong></p>[/quote]\n\n[quote]Thanks for the fantastic photos and for being so patient handling all the young children.\n\n<p style=\"text-align: right\";><strong>Don</strong></p>[/quote]\n\n[quote]Lovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\n<strong><p style=\"text-align: right\";>Many thanks,\nBeryl Price</p></strong>[/quote]\n\n[quote]Very, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\n<strong><p style=\"text-align:right\";>Thanks,\nDionne Smith and family</p></strong>[/quote]\n\n[quote]Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\n<strong><p style=\"text-align: right\";>Thank you,\nJohn Garbin and family </p></strong>[/quote]","Testimonials","","inherit","open","open","","18-revision-18","","","2012-10-11 01:26:12","2012-10-11 01:26:12","","18","http://www.livingimagephotography.com.au/18-revision-18/","0","revision","","0");
INSERT INTO wp_posts VALUES("1163","1","2012-10-10 06:57:08","2012-10-10 06:57:08","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\">\n[quote]Just wanted to let both you and Simon know how wonderful my pictures are. I gave them to Tim on the weekend as a thank you for all his support over the last five years of my degree and also because it was the 35th anniversary of when we first started dating.\n\nHe LOVES the photos, really thinks they are amazing!!!!!!! Not only is he impressed with how I look he is also hugely impressed with the quality of the images, the presentation and just how professional it all looks\n\nThank you again for everything. I will definitely recommend you to everyone I meet.\n<p style=\"text-align: right\";><strong>-Sharon Bickford</strong></p>[/quote]\n<br />\n[quote]Before we arrived at Living Image Photography I was a little nervous, but as soon as we walked into the studio the nervous disappeared. The studio is a relaxing environment where Amy and Simon make you feel very welcome,  so you can be yourself. Derek and I had such a fun afternoon. At our viewing, there was so many good photos to chose from and the viewing room setup made it so easy to be able to select the photos, frames and sizes which would fit perfectly in our home. \nWe are so happy with our photos, and would recommend Living Image Photography to anyone who wants to capture those very special moments in your life – this is their speciality.\n<p style=\"text-align: right\";><strong>-Kim & Derek</strong></p>[/quote]\n<br />\n[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met</p>\n<br />\n<p style=\"text-align: right;\"><strong>-Michelle Matthewman </strong></p>[/quote]\n<p style=\"text-align: left;\">[quote]The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\n<br />\n<p style=\"text-align: right;\"><strong>- James &amp; Kristen Green </strong></p>[/quote]\n[quote]Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n<p style=\"text-align: right\";><strong>Cheers,\n</strong><strong>Jen Drysdale</strong></p>[/quote]\n\n[quote]Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinely had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thank you Simon.\n<p style=\"text-align: right\";><strong>-Maureen Wills </strong></p>[/quote]\n\n[quote]Dear Simon and Amy,\n\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\n\n\n<p style=\"text-align:right\";><strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></p>[/quote]\n\n[quote]I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\n<p style=\"text-align: right\";><strong>-Carly Hansen</strong></p>[/quote]\n\n[quote]Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\n<strong>See it here</strong>&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\"><h6>The Strands Of Me</h6></a> </em>[/quote]\n\n[quote]Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<p style=\"text-align: right\";><strong>Cheers\nJess and Ben</strong>[/quote]\n\n[quote]DAVID IS AWESOME!!!\nWe had a great time, it was relaxed, comfortable and the location of the photo shoot was wonderful! David was great with the kids, he has a wonderful personality which allowed us to feel welcomed and be ourselves! Emily and David you are both wonderful professionals who made us feel more like friends than clients…</em></em>\n\nGood luck for the future\n\n<p style=\"text-align: right\";><strong>Kind Regards,\nKatine, Evan, Ecrini, Nickolas and Stavros Maounis</strong></p>\n\n\nPS – Emily was awesome too xx[/quote]\n\n[quote]What a fantastic experience!\n\n<em><em>On our way driving to our ‘photo shoot’ we were starting to think ‘What are we doing?’ thinking we would be too anxious and self conscious. All that went out of the window within minutes of meeting David. We had so much fun and it showed in the photos – which are so BEAUTIFUL! We have wonderful memories of the day too (we’ll never forget the ‘Drunken Scotsman dance’!). Thank-you so much Emily for your enthusiasm and patience… ‘Emily show us that one again, and that one, no that one – and can you show us them all again??’ Such a wonderful time and lovely photos to keep forever!\n\n<p style=\"text-align: right\";><strong>See you next time,\nNatalie and Ewen Gibb</strong></p>[/quote]\n\n[quote]Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderful photos had been captured of our ugly mugs!\n\n<p style=\"text-align: right\";><strong>Thanks again,\nAnne and Owen Kruger</strong></p>[/quote]\n\n\n[quote]We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\nIt was a great day – one I would recommend to anyone\n\n<p style=\"text-align: right\";><strong>Thanks so much,\nSimone Faulkner</strong></p>[/quote]\n\n\n\n[quote]Thanks guys for a great experience\n\nIt was the first family shoot for the grandparents, but David was very patient with everyone and kept everyone nice and relaxed. The pictures turned out amazing with lots of creative shoots. Thanks again for the opportunity to capture our little bubs and the free gift is lovely\n\n<p style=\"text-align: right\";><strong>Elson &amp; Karen Goh</p></strong>[/quote]\n\n\n[quote]David and Emily.\n\nOur photos are just amazing. We will never forget the great work that you guys have done. I will be recommending you to everyone in my community. It was great fun working with you guys. We wish you great luck for an everlasting success.\n\n<p style=\"text-align: right\";><strong>Shekhar, Vaishali and Shanti</strong></p>[/quote]\n\n[quote]Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!\n\n<p style=\"text-align: right\";><strong>The Trusso Family</strong></p>[/quote]\n\n\n\n[quote]Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! \n\n<p style=\"text-align:right\";><strong>Herman and Sol</strong></p>[/quote]\n\n[quote]Great photos! Great Service! Very professional people, very happy with everything! \n\n<p style=\"text-align: right\";><strong>Thanks\nHenneker Family</strong></p>[/quote]\n\n[quote]Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!\n\n<p style=\"text-align:right\";><strong>Mohamed Family</strong></p>[/quote]\n\n[quote]Hey guys!\n\nThank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.\n\n<strong><p style=\"text-align: right\";>Cheers,\nRobert Hart</strong></p>[/quote]\n\n[quote]Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.\n\n<p style=\"text-align: right\";><strong>Lyn and Rocco</p></strong>[/quote]\n\n[quote]A very pleasant experience. Living Image was very professional and accommodating.\n\n<p style=\"text-align:right\";><strong>Marty</p></strong>[/quote]\n\n[quote]We had a good time, very professional and friendly people.\n\n<strong><p style=\"text-align:right\";>Thank-you.\nJorge and Aracely</strong></p>[/quote]\n\n[quote]Excellent posing and lighting effects. Friendly and most accommodations. Great presentation in an environment that was relaxing and professional.\n\nVery impressed with finished product and  good manners from Emily and David.\n\n<p style=\"text-align:right\";><strong>Most Appreciated,\nJill and Paul Bronson</strong></p>[/quote]\n\n[quote]Very Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n\n<p style=\"text-align:right\";><strong>Edward Rynne</strong>[/quote]\n\n[quote]Thanks, great photos. Pleasant experience.\n\n<p style=\"text-align: right\";><strong>John and Antonella Calabrese</p></strong>[/quote]\n\n[quote]We’re very happy with the photos.\n\n<strong><p style=\"text-align\";>good job,\nHenry and Patricia Adie-Cooper</strong></p>[/quote]\n\n[quote]Thanks! Brilliant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n\n<p style=\"text-align: right\";><strong>Elaine and Noel Walters</strong></p>[/quote]\n\n[quote]We had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\n<strong><p style=\"text-align: right\";>Thanks,\nDerek Wall</strong></p>[/quote]\n\n[quote]A very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. \n\n<strong><p style=\"text-align: right\";>Thank-you,\nOtto and Jeannie Ashboth</strong></p>[/quote]\n\n[quote]Thanks for the fantastic photos and for being so patient handling all the young children.\n\n<p style=\"text-align: right\";><strong>Don</strong></p>[/quote]\n\n[quote]The photo session was excellent, Point Walter is so beautiful and David took time to choose the best place for us. Everyone was very helpful. Beautiful photo. Thank-you very much.\n\n<p style=\"text-align: right\";><strong>Rose</strong></p>[/quote]\n\n[quote]Both David and Emily have been great in the service provided as well as their friendliness and being very helpful in every possible way.\n\n<p style=\"text-align: right\";><strong>Ian Ong</strong></p>[/quote]\n\n[quote]Working with teenagers can be a difficult thing, especially when they are not willing participants in the task at hand. But David did a splendid job and our photo is testimony to that. Thank-you for the opportunity to participate.\n\n<p style=\"text-align: right\";><strong>Helen Westcott</strong></p>[/quote]\n\n[quote]Lovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\n<strong><p style=\"text-align: right\";>Many thanks,\nBeryl Price</p></strong>[/quote]\n\n[quote]Very, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\n<strong><p style=\"text-align:right\";>Thanks,\nDionne Smith and family</p></strong>[/quote]\n\n[quote]Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\n<strong><p style=\"text-align: right\";>Thank you,\nJohn Garbin and family </p></strong>[/quote]\n\n[quote]The photos are gorgeous, we had a lot of fun at the river and David made Kyra feel completely at ease.\n\n<strong><p style=\"text-align: right\";>Thank-you,\nChristine, Mal and Kyra</p></strong>[/quote]\n\n[quote]Thank you David and Emily\n\nOur family enjoyed the photo shoot, the professional approach to the job, but the friendly and relaxing time we spent with you. The photos are superb and we will enjoy them till we can’t see any more!\n\nVery best wishes to you both…. \n\n<strong><p style=\"text-align: right\";>Bev Flockart</p></strong>[/quote]\n\n[quote]Thanks so much Emily and David for making me feel so comfortable during the shoot. We all enjoyed ourselves thoroughly. So THANKS!\n\n<strong><p style=\"text-align: right\";>Pamela</p></strong>[/quote]","Testimonials","","inherit","open","open","","18-revision-17","","","2012-10-10 06:57:08","2012-10-10 06:57:08","","18","http://www.livingimagephotography.com.au/18-revision-17/","0","revision","","0");
INSERT INTO wp_posts VALUES("563","1","2012-09-08 04:52:27","2012-09-08 04:52:27","","Testimonials","","inherit","open","open","","18-revision-2","","","2012-09-08 04:52:27","2012-09-08 04:52:27","","18","http://www.livingimagephotography.com.au/18-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("564","1","2012-09-15 07:17:47","2012-09-15 07:17:47","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\"><em>\"Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met\"\n<strong><strong>-</strong></strong><strong>Michelle Matthewman </strong></em></p>\n<p style=\"text-align: left;\">\"<em>The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\"\n<strong>- James &amp; Kristen Green </strong></em></p>\n<em>\"Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n</em><strong>Cheers,\n</strong><strong>Jen Drysdale</strong>\n\n<em>\"Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinly had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thankyou Simon.\"\n<strong>-Maureen Wills </strong></em>\n\n<em>\" Dear Simon and Amy,\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\"\n<strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></em>\n\n<em>\"I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\"\n<strong>-Carly Hansen</strong></em>\n\n<em>Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\nSee it here&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\">The Strands Of Me</a> </em>\n\n<em><em>\"Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<em><em>Cheers</em><strong><em>\nJess and Ben</em></strong></em>\n\n<em><em>“DAVID IS AWESOME!!!\nWe had a great time, it was relaxed, comfortable and the location of the photo shoot was wonderful! David was great with the kids, he has a wonderful personality which allowed us to feel welcomed and be ourselves! Emily and David you are both wonderful professionals who made us feel more like friends than clients…</em></em>\n\n<em><em>Good luck for the future</em></em>\n\n<em><em>Kind Regards,\n<strong>Katine, Evan, Ecrini, Nickolas and Stavros Maounis</strong></em></em>\n\n<em> </em>\n\n<em><em>PS – Emily was awesome too xx”</em></em>\n\n<em><em>“What a fantastic experience!</em></em>\n\n<em><em>On our way driving to our ‘photo shoot’ we were starting to think ‘What are we doing?’ thinking we would be too anxious and self conscious. All that went out of the window within minutes of meeting David. We had so much fun and it showed in the photos – which are so BEAUTIFUL! We have wonderful memories of the day too (we’ll never forget the ‘Drunken Scotsman dance’!). Thank-you so much Emily for your enthusiasm and patience… ‘Emily show us that one again, and that one, no that one – and can you show us them all again??’ Such a wonderful time and lovely photos to keep forever!</em></em>\n\n<em><em>See you next time,\n<strong>Natalie and Ewen Gibb</strong>”<strong> </strong></em></em>\n\n<em><em>“Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderfull photos had been captured of our ugly mugs!</em></em>\n\n<em><em>Thanks again,\n<strong>Anne and Owen Kruger</strong>”</em></em>\n\n<em> </em>\n\n<em>“We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\n<em>It was a great day – one I would recommend to anyone</em>\n\n<em>Thanks so much,</em>\n\n<strong><em> Simone Faulkner</em></strong><em>” </em>\n\n<em> </em>\n\n<em>“Thanks guys for a great experience</em>\n\n<em>It was the first family shoot for the grandparents, but David was very patient with everyone and kept everyone nice and relaxed. The pictures turned out amazing with lots of creative shoots. Thanks again for the opportunity to capture our little bubs and the free gift is lovely\n<strong>Elson &amp; Karen Goh</strong>”</em>\n\n<em> </em>\n\n<em>“David and Emily.</em>\n\n<em>Our photos are just amazing. We will never forget the great work that you guys have done. I will be recommending you to everyone in my community. It was great fun working with you guys. We wish you great luck for an everlasting success.”\n</em><strong>Shekhar, Vaishali and Shanti</strong>\n\n<em>“Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!”\n</em><strong>The Trusso Family</strong>\n\n<em> </em>\n\n<em>“Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! <strong>Herman and Sol</strong>”</em>\n\n<em>“Great photos! Great Service! Very professional people, very happy with everything! Thanks”\n</em><strong>Henneker Family</strong>\n\n<em>“Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!”\n</em><strong>Mohamed Family</strong>\n\n<em>“Hey guys</em>\n\n<em>Thank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.</em>\n\n<em>Cheers,\n<strong>Robert Hart</strong>”</em>\n\n<em>“Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.”\n</em><strong>Lyn and Rocco</strong>\n\n<em>“A very pleasant experience. Living Image was very professional and accommodating.\n<strong>Marty</strong>”</em><strong> </strong>\n\n<em>“We had a good time, very professional and friendly people. Thank-you.\n<strong>Jorge and Aracely</strong>”<strong> </strong></em>\n\nExcellent posing and lighting effects. Friendly and most accommodations. Great presentaion in an environment that was relaxing and professional.\n\nVery impressed with finished product and  good manners from Emily and David.\n\nMost Appreciated,\n<strong>Jill and Paul Bronson</strong>\n\nVery Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n<strong>Edward Rynne</strong>\n\nThanks, great photos. Pleasant experience.\n<strong>John and Antonella Calabrese</strong>\n\nWe’re very happy with the photos, good job,\n<strong>Henry and Patricia Adie-Cooper</strong>\n\nThanks! Billiant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n<strong>Elaine and Noel Walters</strong>\n\nWe had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\nThanks <strong>Derek Wall</strong>\n\nA very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. Thank-you,\n<strong>Otto and Jeannie Ashboth</strong>\n\nThanks for the fantastic photos and for being so patient handling all the young children.\n<strong>Don</strong>\n\nThe photo session was excellent, Point Walter is so beautiful and David took time to choose the best place for us. Everyone was very helpful. Beautiful photo. Thank-you very much.\n<strong>Rose</strong>\n\nBoth David and Emily have been great in the service provided as well as their friendliness and being very helpful in every possible way.\n<strong>Ian Ong</strong>\n\nWorking with teenagers can be a difficult thing, especially when they are not willing participants in the task at hand. But David did a splendid job and our photo is testimony to that. Thank-you for the opportunity to participate.\n<strong>Helen Westcott</strong>\n\nLovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\nMany thanks,\n<strong>Beryl Price</strong>\n\nVery, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\nThanks,\n<strong>Dionne Smith and family</strong>\n\nAbsolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\nThank-you,\n<strong>John Garbin and family </strong>\n\nThe photos are gorgeous, we had a lot of fun at the river and David made Kyra feel completely at ease.\n\nThank-you,\n<strong>Christine, Mal and Kyra</strong>\n\nThank-you David and Emily\n\nOur family enjoyed the photo shoot, the professional approach to the job, but the friendly and relaxing time we spent with you. The photos are superb and we will enjoy them till we can’t see any more!\n\nVery best wishes to you both…. <strong>Bev Flockart</strong>\n\nThanks so much Emily and David for making me feel so comfortable during the shoot. We all enjoyed ourselves thoroughly. So THANKS!\n<strong>Pamela</strong>","Testimonials","","inherit","open","open","","18-revision-3","","","2012-09-15 07:17:47","2012-09-15 07:17:47","","18","http://www.livingimagephotography.com.au/18-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("565","1","2012-09-15 07:22:57","2012-09-15 07:22:57","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\"><em>[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met[/quote]\n<strong><strong>-</strong></strong><strong>Michelle Matthewman </strong></em></p>\n<p style=\"text-align: left;\">\"<em>The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\"\n<strong>- James &amp; Kristen Green </strong></em></p>\n<em>\"Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n</em><strong>Cheers,\n</strong><strong>Jen Drysdale</strong>\n\n<em>\"Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinly had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thankyou Simon.\"\n<strong>-Maureen Wills </strong></em>\n\n<em>\" Dear Simon and Amy,\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\"\n<strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></em>\n\n<em>\"I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\"\n<strong>-Carly Hansen</strong></em>\n\n<em>Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\nSee it here&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\">The Strands Of Me</a> </em>\n\n<em><em>\"Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<em><em>Cheers</em><strong><em>\nJess and Ben</em></strong></em>\n\n<em><em>“DAVID IS AWESOME!!!\nWe had a great time, it was relaxed, comfortable and the location of the photo shoot was wonderful! David was great with the kids, he has a wonderful personality which allowed us to feel welcomed and be ourselves! Emily and David you are both wonderful professionals who made us feel more like friends than clients…</em></em>\n\n<em><em>Good luck for the future</em></em>\n\n<em><em>Kind Regards,\n<strong>Katine, Evan, Ecrini, Nickolas and Stavros Maounis</strong></em></em>\n\n<em> </em>\n\n<em><em>PS – Emily was awesome too xx”</em></em>\n\n<em><em>“What a fantastic experience!</em></em>\n\n<em><em>On our way driving to our ‘photo shoot’ we were starting to think ‘What are we doing?’ thinking we would be too anxious and self conscious. All that went out of the window within minutes of meeting David. We had so much fun and it showed in the photos – which are so BEAUTIFUL! We have wonderful memories of the day too (we’ll never forget the ‘Drunken Scotsman dance’!). Thank-you so much Emily for your enthusiasm and patience… ‘Emily show us that one again, and that one, no that one – and can you show us them all again??’ Such a wonderful time and lovely photos to keep forever!</em></em>\n\n<em><em>See you next time,\n<strong>Natalie and Ewen Gibb</strong>”<strong> </strong></em></em>\n\n<em><em>“Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderfull photos had been captured of our ugly mugs!</em></em>\n\n<em><em>Thanks again,\n<strong>Anne and Owen Kruger</strong>”</em></em>\n\n<em> </em>\n\n<em>“We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\n<em>It was a great day – one I would recommend to anyone</em>\n\n<em>Thanks so much,</em>\n\n<strong><em> Simone Faulkner</em></strong><em>” </em>\n\n<em> </em>\n\n<em>“Thanks guys for a great experience</em>\n\n<em>It was the first family shoot for the grandparents, but David was very patient with everyone and kept everyone nice and relaxed. The pictures turned out amazing with lots of creative shoots. Thanks again for the opportunity to capture our little bubs and the free gift is lovely\n<strong>Elson &amp; Karen Goh</strong>”</em>\n\n<em> </em>\n\n<em>“David and Emily.</em>\n\n<em>Our photos are just amazing. We will never forget the great work that you guys have done. I will be recommending you to everyone in my community. It was great fun working with you guys. We wish you great luck for an everlasting success.”\n</em><strong>Shekhar, Vaishali and Shanti</strong>\n\n<em>“Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!”\n</em><strong>The Trusso Family</strong>\n\n<em> </em>\n\n<em>“Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! <strong>Herman and Sol</strong>”</em>\n\n<em>“Great photos! Great Service! Very professional people, very happy with everything! Thanks”\n</em><strong>Henneker Family</strong>\n\n<em>“Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!”\n</em><strong>Mohamed Family</strong>\n\n<em>“Hey guys</em>\n\n<em>Thank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.</em>\n\n<em>Cheers,\n<strong>Robert Hart</strong>”</em>\n\n<em>“Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.”\n</em><strong>Lyn and Rocco</strong>\n\n<em>“A very pleasant experience. Living Image was very professional and accommodating.\n<strong>Marty</strong>”</em><strong> </strong>\n\n<em>“We had a good time, very professional and friendly people. Thank-you.\n<strong>Jorge and Aracely</strong>”<strong> </strong></em>\n\nExcellent posing and lighting effects. Friendly and most accommodations. Great presentaion in an environment that was relaxing and professional.\n\nVery impressed with finished product and  good manners from Emily and David.\n\nMost Appreciated,\n<strong>Jill and Paul Bronson</strong>\n\nVery Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n<strong>Edward Rynne</strong>\n\nThanks, great photos. Pleasant experience.\n<strong>John and Antonella Calabrese</strong>\n\nWe’re very happy with the photos, good job,\n<strong>Henry and Patricia Adie-Cooper</strong>\n\nThanks! Billiant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n<strong>Elaine and Noel Walters</strong>\n\nWe had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\nThanks <strong>Derek Wall</strong>\n\nA very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. Thank-you,\n<strong>Otto and Jeannie Ashboth</strong>\n\nThanks for the fantastic photos and for being so patient handling all the young children.\n<strong>Don</strong>\n\nThe photo session was excellent, Point Walter is so beautiful and David took time to choose the best place for us. Everyone was very helpful. Beautiful photo. Thank-you very much.\n<strong>Rose</strong>\n\nBoth David and Emily have been great in the service provided as well as their friendliness and being very helpful in every possible way.\n<strong>Ian Ong</strong>\n\nWorking with teenagers can be a difficult thing, especially when they are not willing participants in the task at hand. But David did a splendid job and our photo is testimony to that. Thank-you for the opportunity to participate.\n<strong>Helen Westcott</strong>\n\nLovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\nMany thanks,\n<strong>Beryl Price</strong>\n\nVery, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\nThanks,\n<strong>Dionne Smith and family</strong>\n\nAbsolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\nThank-you,\n<strong>John Garbin and family </strong>\n\nThe photos are gorgeous, we had a lot of fun at the river and David made Kyra feel completely at ease.\n\nThank-you,\n<strong>Christine, Mal and Kyra</strong>\n\nThank-you David and Emily\n\nOur family enjoyed the photo shoot, the professional approach to the job, but the friendly and relaxing time we spent with you. The photos are superb and we will enjoy them till we can’t see any more!\n\nVery best wishes to you both…. <strong>Bev Flockart</strong>\n\nThanks so much Emily and David for making me feel so comfortable during the shoot. We all enjoyed ourselves thoroughly. So THANKS!\n<strong>Pamela</strong>","Testimonials","","inherit","open","open","","18-revision-4","","","2012-09-15 07:22:57","2012-09-15 07:22:57","","18","http://www.livingimagephotography.com.au/18-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("566","1","2012-09-15 07:24:18","2012-09-15 07:24:18","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\"><em>[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met\n<strong><strong>-</strong></strong><strong>Michelle Matthewman </strong></em></p>[/quote]\n<p style=\"text-align: left;\">\"<em>The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\"\n<strong>- James &amp; Kristen Green </strong></em></p>\n<em>\"Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n</em><strong>Cheers,\n</strong><strong>Jen Drysdale</strong>\n\n<em>\"Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinly had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thankyou Simon.\"\n<strong>-Maureen Wills </strong></em>\n\n<em>\" Dear Simon and Amy,\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\"\n<strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></em>\n\n<em>\"I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\"\n<strong>-Carly Hansen</strong></em>\n\n<em>Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\nSee it here&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\">The Strands Of Me</a> </em>\n\n<em><em>\"Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<em><em>Cheers</em><strong><em>\nJess and Ben</em></strong></em>\n\n<em><em>“DAVID IS AWESOME!!!\nWe had a great time, it was relaxed, comfortable and the location of the photo shoot was wonderful! David was great with the kids, he has a wonderful personality which allowed us to feel welcomed and be ourselves! Emily and David you are both wonderful professionals who made us feel more like friends than clients…</em></em>\n\n<em><em>Good luck for the future</em></em>\n\n<em><em>Kind Regards,\n<strong>Katine, Evan, Ecrini, Nickolas and Stavros Maounis</strong></em></em>\n\n<em> </em>\n\n<em><em>PS – Emily was awesome too xx”</em></em>\n\n<em><em>“What a fantastic experience!</em></em>\n\n<em><em>On our way driving to our ‘photo shoot’ we were starting to think ‘What are we doing?’ thinking we would be too anxious and self conscious. All that went out of the window within minutes of meeting David. We had so much fun and it showed in the photos – which are so BEAUTIFUL! We have wonderful memories of the day too (we’ll never forget the ‘Drunken Scotsman dance’!). Thank-you so much Emily for your enthusiasm and patience… ‘Emily show us that one again, and that one, no that one – and can you show us them all again??’ Such a wonderful time and lovely photos to keep forever!</em></em>\n\n<em><em>See you next time,\n<strong>Natalie and Ewen Gibb</strong>”<strong> </strong></em></em>\n\n<em><em>“Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderfull photos had been captured of our ugly mugs!</em></em>\n\n<em><em>Thanks again,\n<strong>Anne and Owen Kruger</strong>”</em></em>\n\n<em> </em>\n\n<em>“We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\n<em>It was a great day – one I would recommend to anyone</em>\n\n<em>Thanks so much,</em>\n\n<strong><em> Simone Faulkner</em></strong><em>” </em>\n\n<em> </em>\n\n<em>“Thanks guys for a great experience</em>\n\n<em>It was the first family shoot for the grandparents, but David was very patient with everyone and kept everyone nice and relaxed. The pictures turned out amazing with lots of creative shoots. Thanks again for the opportunity to capture our little bubs and the free gift is lovely\n<strong>Elson &amp; Karen Goh</strong>”</em>\n\n<em> </em>\n\n<em>“David and Emily.</em>\n\n<em>Our photos are just amazing. We will never forget the great work that you guys have done. I will be recommending you to everyone in my community. It was great fun working with you guys. We wish you great luck for an everlasting success.”\n</em><strong>Shekhar, Vaishali and Shanti</strong>\n\n<em>“Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!”\n</em><strong>The Trusso Family</strong>\n\n<em> </em>\n\n<em>“Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! <strong>Herman and Sol</strong>”</em>\n\n<em>“Great photos! Great Service! Very professional people, very happy with everything! Thanks”\n</em><strong>Henneker Family</strong>\n\n<em>“Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!”\n</em><strong>Mohamed Family</strong>\n\n<em>“Hey guys</em>\n\n<em>Thank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.</em>\n\n<em>Cheers,\n<strong>Robert Hart</strong>”</em>\n\n<em>“Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.”\n</em><strong>Lyn and Rocco</strong>\n\n<em>“A very pleasant experience. Living Image was very professional and accommodating.\n<strong>Marty</strong>”</em><strong> </strong>\n\n<em>“We had a good time, very professional and friendly people. Thank-you.\n<strong>Jorge and Aracely</strong>”<strong> </strong></em>\n\nExcellent posing and lighting effects. Friendly and most accommodations. Great presentaion in an environment that was relaxing and professional.\n\nVery impressed with finished product and  good manners from Emily and David.\n\nMost Appreciated,\n<strong>Jill and Paul Bronson</strong>\n\nVery Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n<strong>Edward Rynne</strong>\n\nThanks, great photos. Pleasant experience.\n<strong>John and Antonella Calabrese</strong>\n\nWe’re very happy with the photos, good job,\n<strong>Henry and Patricia Adie-Cooper</strong>\n\nThanks! Billiant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n<strong>Elaine and Noel Walters</strong>\n\nWe had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\nThanks <strong>Derek Wall</strong>\n\nA very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. Thank-you,\n<strong>Otto and Jeannie Ashboth</strong>\n\nThanks for the fantastic photos and for being so patient handling all the young children.\n<strong>Don</strong>\n\nThe photo session was excellent, Point Walter is so beautiful and David took time to choose the best place for us. Everyone was very helpful. Beautiful photo. Thank-you very much.\n<strong>Rose</strong>\n\nBoth David and Emily have been great in the service provided as well as their friendliness and being very helpful in every possible way.\n<strong>Ian Ong</strong>\n\nWorking with teenagers can be a difficult thing, especially when they are not willing participants in the task at hand. But David did a splendid job and our photo is testimony to that. Thank-you for the opportunity to participate.\n<strong>Helen Westcott</strong>\n\nLovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\nMany thanks,\n<strong>Beryl Price</strong>\n\nVery, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\nThanks,\n<strong>Dionne Smith and family</strong>\n\nAbsolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\nThank-you,\n<strong>John Garbin and family </strong>\n\nThe photos are gorgeous, we had a lot of fun at the river and David made Kyra feel completely at ease.\n\nThank-you,\n<strong>Christine, Mal and Kyra</strong>\n\nThank-you David and Emily\n\nOur family enjoyed the photo shoot, the professional approach to the job, but the friendly and relaxing time we spent with you. The photos are superb and we will enjoy them till we can’t see any more!\n\nVery best wishes to you both…. <strong>Bev Flockart</strong>\n\nThanks so much Emily and David for making me feel so comfortable during the shoot. We all enjoyed ourselves thoroughly. So THANKS!\n<strong>Pamela</strong>","Testimonials","","inherit","open","open","","18-revision-5","","","2012-09-15 07:24:18","2012-09-15 07:24:18","","18","http://www.livingimagephotography.com.au/18-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("567","1","2012-09-15 07:27:45","2012-09-15 07:27:45","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\"><em>[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met</p>\n<br />\n<p style=\"text-align: right;\"><strong>-Michelle Matthewman </strong></p>[/quote]\n<p style=\"text-align: left;\">\"<em>The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\"\n<strong>- James &amp; Kristen Green </strong></em></p>\n<em>\"Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n</em><strong>Cheers,\n</strong><strong>Jen Drysdale</strong>\n\n<em>\"Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinly had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thankyou Simon.\"\n<strong>-Maureen Wills </strong></em>\n\n<em>\" Dear Simon and Amy,\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\"\n<strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></em>\n\n<em>\"I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\"\n<strong>-Carly Hansen</strong></em>\n\n<em>Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\nSee it here&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\">The Strands Of Me</a> </em>\n\n<em><em>\"Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<em><em>Cheers</em><strong><em>\nJess and Ben</em></strong></em>\n\n<em><em>“DAVID IS AWESOME!!!\nWe had a great time, it was relaxed, comfortable and the location of the photo shoot was wonderful! David was great with the kids, he has a wonderful personality which allowed us to feel welcomed and be ourselves! Emily and David you are both wonderful professionals who made us feel more like friends than clients…</em></em>\n\n<em><em>Good luck for the future</em></em>\n\n<em><em>Kind Regards,\n<strong>Katine, Evan, Ecrini, Nickolas and Stavros Maounis</strong></em></em>\n\n<em> </em>\n\n<em><em>PS – Emily was awesome too xx”</em></em>\n\n<em><em>“What a fantastic experience!</em></em>\n\n<em><em>On our way driving to our ‘photo shoot’ we were starting to think ‘What are we doing?’ thinking we would be too anxious and self conscious. All that went out of the window within minutes of meeting David. We had so much fun and it showed in the photos – which are so BEAUTIFUL! We have wonderful memories of the day too (we’ll never forget the ‘Drunken Scotsman dance’!). Thank-you so much Emily for your enthusiasm and patience… ‘Emily show us that one again, and that one, no that one – and can you show us them all again??’ Such a wonderful time and lovely photos to keep forever!</em></em>\n\n<em><em>See you next time,\n<strong>Natalie and Ewen Gibb</strong>”<strong> </strong></em></em>\n\n<em><em>“Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderfull photos had been captured of our ugly mugs!</em></em>\n\n<em><em>Thanks again,\n<strong>Anne and Owen Kruger</strong>”</em></em>\n\n<em> </em>\n\n<em>“We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\n<em>It was a great day – one I would recommend to anyone</em>\n\n<em>Thanks so much,</em>\n\n<strong><em> Simone Faulkner</em></strong><em>” </em>\n\n<em> </em>\n\n<em>“Thanks guys for a great experience</em>\n\n<em>It was the first family shoot for the grandparents, but David was very patient with everyone and kept everyone nice and relaxed. The pictures turned out amazing with lots of creative shoots. Thanks again for the opportunity to capture our little bubs and the free gift is lovely\n<strong>Elson &amp; Karen Goh</strong>”</em>\n\n<em> </em>\n\n<em>“David and Emily.</em>\n\n<em>Our photos are just amazing. We will never forget the great work that you guys have done. I will be recommending you to everyone in my community. It was great fun working with you guys. We wish you great luck for an everlasting success.”\n</em><strong>Shekhar, Vaishali and Shanti</strong>\n\n<em>“Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!”\n</em><strong>The Trusso Family</strong>\n\n<em> </em>\n\n<em>“Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! <strong>Herman and Sol</strong>”</em>\n\n<em>“Great photos! Great Service! Very professional people, very happy with everything! Thanks”\n</em><strong>Henneker Family</strong>\n\n<em>“Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!”\n</em><strong>Mohamed Family</strong>\n\n<em>“Hey guys</em>\n\n<em>Thank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.</em>\n\n<em>Cheers,\n<strong>Robert Hart</strong>”</em>\n\n<em>“Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.”\n</em><strong>Lyn and Rocco</strong>\n\n<em>“A very pleasant experience. Living Image was very professional and accommodating.\n<strong>Marty</strong>”</em><strong> </strong>\n\n<em>“We had a good time, very professional and friendly people. Thank-you.\n<strong>Jorge and Aracely</strong>”<strong> </strong></em>\n\nExcellent posing and lighting effects. Friendly and most accommodations. Great presentaion in an environment that was relaxing and professional.\n\nVery impressed with finished product and  good manners from Emily and David.\n\nMost Appreciated,\n<strong>Jill and Paul Bronson</strong>\n\nVery Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n<strong>Edward Rynne</strong>\n\nThanks, great photos. Pleasant experience.\n<strong>John and Antonella Calabrese</strong>\n\nWe’re very happy with the photos, good job,\n<strong>Henry and Patricia Adie-Cooper</strong>\n\nThanks! Billiant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n<strong>Elaine and Noel Walters</strong>\n\nWe had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\nThanks <strong>Derek Wall</strong>\n\nA very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. Thank-you,\n<strong>Otto and Jeannie Ashboth</strong>\n\nThanks for the fantastic photos and for being so patient handling all the young children.\n<strong>Don</strong>\n\nThe photo session was excellent, Point Walter is so beautiful and David took time to choose the best place for us. Everyone was very helpful. Beautiful photo. Thank-you very much.\n<strong>Rose</strong>\n\nBoth David and Emily have been great in the service provided as well as their friendliness and being very helpful in every possible way.\n<strong>Ian Ong</strong>\n\nWorking with teenagers can be a difficult thing, especially when they are not willing participants in the task at hand. But David did a splendid job and our photo is testimony to that. Thank-you for the opportunity to participate.\n<strong>Helen Westcott</strong>\n\nLovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\nMany thanks,\n<strong>Beryl Price</strong>\n\nVery, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\nThanks,\n<strong>Dionne Smith and family</strong>\n\nAbsolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\nThank-you,\n<strong>John Garbin and family </strong>\n\nThe photos are gorgeous, we had a lot of fun at the river and David made Kyra feel completely at ease.\n\nThank-you,\n<strong>Christine, Mal and Kyra</strong>\n\nThank-you David and Emily\n\nOur family enjoyed the photo shoot, the professional approach to the job, but the friendly and relaxing time we spent with you. The photos are superb and we will enjoy them till we can’t see any more!\n\nVery best wishes to you both…. <strong>Bev Flockart</strong>\n\nThanks so much Emily and David for making me feel so comfortable during the shoot. We all enjoyed ourselves thoroughly. So THANKS!\n<strong>Pamela</strong>","Testimonials","","inherit","open","open","","18-revision-6","","","2012-09-15 07:27:45","2012-09-15 07:27:45","","18","http://www.livingimagephotography.com.au/18-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("568","1","2012-09-15 07:32:18","2012-09-15 07:32:18","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\">[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met</p>\n<br />\n<p style=\"text-align: right;\"><strong>-Michelle Matthewman </strong></p>[/quote]\n<p style=\"text-align: left;\">[quote]The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\n<br />\n<p style=\"text-align: right;\"><strong>- James &amp; Kristen Green </strong></p>[/quote]\n<em>\"Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n</em><strong>Cheers,\n</strong><strong>Jen Drysdale</strong>\n\n<em>\"Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinly had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thankyou Simon.\"\n<strong>-Maureen Wills </strong></em>\n\n<em>\" Dear Simon and Amy,\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\"\n<strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></em>\n\n<em>\"I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\"\n<strong>-Carly Hansen</strong></em>\n\n<em>Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\nSee it here&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\">The Strands Of Me</a> </em>\n\n<em><em>\"Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<em><em>Cheers</em><strong><em>\nJess and Ben</em></strong></em>\n\n<em><em>“DAVID IS AWESOME!!!\nWe had a great time, it was relaxed, comfortable and the location of the photo shoot was wonderful! David was great with the kids, he has a wonderful personality which allowed us to feel welcomed and be ourselves! Emily and David you are both wonderful professionals who made us feel more like friends than clients…</em></em>\n\n<em><em>Good luck for the future</em></em>\n\n<em><em>Kind Regards,\n<strong>Katine, Evan, Ecrini, Nickolas and Stavros Maounis</strong></em></em>\n\n<em> </em>\n\n<em><em>PS – Emily was awesome too xx”</em></em>\n\n<em><em>“What a fantastic experience!</em></em>\n\n<em><em>On our way driving to our ‘photo shoot’ we were starting to think ‘What are we doing?’ thinking we would be too anxious and self conscious. All that went out of the window within minutes of meeting David. We had so much fun and it showed in the photos – which are so BEAUTIFUL! We have wonderful memories of the day too (we’ll never forget the ‘Drunken Scotsman dance’!). Thank-you so much Emily for your enthusiasm and patience… ‘Emily show us that one again, and that one, no that one – and can you show us them all again??’ Such a wonderful time and lovely photos to keep forever!</em></em>\n\n<em><em>See you next time,\n<strong>Natalie and Ewen Gibb</strong>”<strong> </strong></em></em>\n\n<em><em>“Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderfull photos had been captured of our ugly mugs!</em></em>\n\n<em><em>Thanks again,\n<strong>Anne and Owen Kruger</strong>”</em></em>\n\n<em> </em>\n\n<em>“We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\n<em>It was a great day – one I would recommend to anyone</em>\n\n<em>Thanks so much,</em>\n\n<strong><em> Simone Faulkner</em></strong><em>” </em>\n\n<em> </em>\n\n<em>“Thanks guys for a great experience</em>\n\n<em>It was the first family shoot for the grandparents, but David was very patient with everyone and kept everyone nice and relaxed. The pictures turned out amazing with lots of creative shoots. Thanks again for the opportunity to capture our little bubs and the free gift is lovely\n<strong>Elson &amp; Karen Goh</strong>”</em>\n\n<em> </em>\n\n<em>“David and Emily.</em>\n\n<em>Our photos are just amazing. We will never forget the great work that you guys have done. I will be recommending you to everyone in my community. It was great fun working with you guys. We wish you great luck for an everlasting success.”\n</em><strong>Shekhar, Vaishali and Shanti</strong>\n\n<em>“Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!”\n</em><strong>The Trusso Family</strong>\n\n<em> </em>\n\n<em>“Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! <strong>Herman and Sol</strong>”</em>\n\n<em>“Great photos! Great Service! Very professional people, very happy with everything! Thanks”\n</em><strong>Henneker Family</strong>\n\n<em>“Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!”\n</em><strong>Mohamed Family</strong>\n\n<em>“Hey guys</em>\n\n<em>Thank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.</em>\n\n<em>Cheers,\n<strong>Robert Hart</strong>”</em>\n\n<em>“Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.”\n</em><strong>Lyn and Rocco</strong>\n\n<em>“A very pleasant experience. Living Image was very professional and accommodating.\n<strong>Marty</strong>”</em><strong> </strong>\n\n<em>“We had a good time, very professional and friendly people. Thank-you.\n<strong>Jorge and Aracely</strong>”<strong> </strong></em>\n\nExcellent posing and lighting effects. Friendly and most accommodations. Great presentaion in an environment that was relaxing and professional.\n\nVery impressed with finished product and  good manners from Emily and David.\n\nMost Appreciated,\n<strong>Jill and Paul Bronson</strong>\n\nVery Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n<strong>Edward Rynne</strong>\n\nThanks, great photos. Pleasant experience.\n<strong>John and Antonella Calabrese</strong>\n\nWe’re very happy with the photos, good job,\n<strong>Henry and Patricia Adie-Cooper</strong>\n\nThanks! Billiant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n<strong>Elaine and Noel Walters</strong>\n\nWe had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\nThanks <strong>Derek Wall</strong>\n\nA very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. Thank-you,\n<strong>Otto and Jeannie Ashboth</strong>\n\nThanks for the fantastic photos and for being so patient handling all the young children.\n<strong>Don</strong>\n\nThe photo session was excellent, Point Walter is so beautiful and David took time to choose the best place for us. Everyone was very helpful. Beautiful photo. Thank-you very much.\n<strong>Rose</strong>\n\nBoth David and Emily have been great in the service provided as well as their friendliness and being very helpful in every possible way.\n<strong>Ian Ong</strong>\n\nWorking with teenagers can be a difficult thing, especially when they are not willing participants in the task at hand. But David did a splendid job and our photo is testimony to that. Thank-you for the opportunity to participate.\n<strong>Helen Westcott</strong>\n\nLovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\nMany thanks,\n<strong>Beryl Price</strong>\n\nVery, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\nThanks,\n<strong>Dionne Smith and family</strong>\n\nAbsolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\nThank-you,\n<strong>John Garbin and family </strong>\n\nThe photos are gorgeous, we had a lot of fun at the river and David made Kyra feel completely at ease.\n\nThank-you,\n<strong>Christine, Mal and Kyra</strong>\n\nThank-you David and Emily\n\nOur family enjoyed the photo shoot, the professional approach to the job, but the friendly and relaxing time we spent with you. The photos are superb and we will enjoy them till we can’t see any more!\n\nVery best wishes to you both…. <strong>Bev Flockart</strong>\n\nThanks so much Emily and David for making me feel so comfortable during the shoot. We all enjoyed ourselves thoroughly. So THANKS!\n<strong>Pamela</strong>","Testimonials","","inherit","open","open","","18-revision-7","","","2012-09-15 07:32:18","2012-09-15 07:32:18","","18","http://www.livingimagephotography.com.au/18-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("569","1","2012-09-15 07:35:44","2012-09-15 07:35:44","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\">[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met</p>\n<br />\n<p style=\"text-align: right;\"><strong>-Michelle Matthewman </strong></p>[/quote]\n<p style=\"text-align: left;\">[quote]The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\n<br />\n<p style=\"text-align: right;\"><strong>- James &amp; Kristen Green </strong></p>[/quote]\n[quote]Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n<p style=\"text-align: right\";><strong>Cheers,\n</strong><strong>Jen Drysdale</strong></p>[/quote]\n\n<em>\"Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinly had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thankyou Simon.\"\n<strong>-Maureen Wills </strong></em>\n\n<em>\" Dear Simon and Amy,\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\"\n<strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></em>\n\n<em>\"I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\"\n<strong>-Carly Hansen</strong></em>\n\n<em>Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\nSee it here&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\">The Strands Of Me</a> </em>\n\n<em><em>\"Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<em><em>Cheers</em><strong><em>\nJess and Ben</em></strong></em>\n\n<em><em>“DAVID IS AWESOME!!!\nWe had a great time, it was relaxed, comfortable and the location of the photo shoot was wonderful! David was great with the kids, he has a wonderful personality which allowed us to feel welcomed and be ourselves! Emily and David you are both wonderful professionals who made us feel more like friends than clients…</em></em>\n\n<em><em>Good luck for the future</em></em>\n\n<em><em>Kind Regards,\n<strong>Katine, Evan, Ecrini, Nickolas and Stavros Maounis</strong></em></em>\n\n<em> </em>\n\n<em><em>PS – Emily was awesome too xx”</em></em>\n\n<em><em>“What a fantastic experience!</em></em>\n\n<em><em>On our way driving to our ‘photo shoot’ we were starting to think ‘What are we doing?’ thinking we would be too anxious and self conscious. All that went out of the window within minutes of meeting David. We had so much fun and it showed in the photos – which are so BEAUTIFUL! We have wonderful memories of the day too (we’ll never forget the ‘Drunken Scotsman dance’!). Thank-you so much Emily for your enthusiasm and patience… ‘Emily show us that one again, and that one, no that one – and can you show us them all again??’ Such a wonderful time and lovely photos to keep forever!</em></em>\n\n<em><em>See you next time,\n<strong>Natalie and Ewen Gibb</strong>”<strong> </strong></em></em>\n\n<em><em>“Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderfull photos had been captured of our ugly mugs!</em></em>\n\n<em><em>Thanks again,\n<strong>Anne and Owen Kruger</strong>”</em></em>\n\n<em> </em>\n\n<em>“We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\n<em>It was a great day – one I would recommend to anyone</em>\n\n<em>Thanks so much,</em>\n\n<strong><em> Simone Faulkner</em></strong><em>” </em>\n\n<em> </em>\n\n<em>“Thanks guys for a great experience</em>\n\n<em>It was the first family shoot for the grandparents, but David was very patient with everyone and kept everyone nice and relaxed. The pictures turned out amazing with lots of creative shoots. Thanks again for the opportunity to capture our little bubs and the free gift is lovely\n<strong>Elson &amp; Karen Goh</strong>”</em>\n\n<em> </em>\n\n<em>“David and Emily.</em>\n\n<em>Our photos are just amazing. We will never forget the great work that you guys have done. I will be recommending you to everyone in my community. It was great fun working with you guys. We wish you great luck for an everlasting success.”\n</em><strong>Shekhar, Vaishali and Shanti</strong>\n\n<em>“Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!”\n</em><strong>The Trusso Family</strong>\n\n<em> </em>\n\n<em>“Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! <strong>Herman and Sol</strong>”</em>\n\n<em>“Great photos! Great Service! Very professional people, very happy with everything! Thanks”\n</em><strong>Henneker Family</strong>\n\n<em>“Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!”\n</em><strong>Mohamed Family</strong>\n\n<em>“Hey guys</em>\n\n<em>Thank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.</em>\n\n<em>Cheers,\n<strong>Robert Hart</strong>”</em>\n\n<em>“Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.”\n</em><strong>Lyn and Rocco</strong>\n\n<em>“A very pleasant experience. Living Image was very professional and accommodating.\n<strong>Marty</strong>”</em><strong> </strong>\n\n<em>“We had a good time, very professional and friendly people. Thank-you.\n<strong>Jorge and Aracely</strong>”<strong> </strong></em>\n\nExcellent posing and lighting effects. Friendly and most accommodations. Great presentaion in an environment that was relaxing and professional.\n\nVery impressed with finished product and  good manners from Emily and David.\n\nMost Appreciated,\n<strong>Jill and Paul Bronson</strong>\n\nVery Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n<strong>Edward Rynne</strong>\n\nThanks, great photos. Pleasant experience.\n<strong>John and Antonella Calabrese</strong>\n\nWe’re very happy with the photos, good job,\n<strong>Henry and Patricia Adie-Cooper</strong>\n\nThanks! Billiant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n<strong>Elaine and Noel Walters</strong>\n\nWe had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\nThanks <strong>Derek Wall</strong>\n\nA very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. Thank-you,\n<strong>Otto and Jeannie Ashboth</strong>\n\nThanks for the fantastic photos and for being so patient handling all the young children.\n<strong>Don</strong>\n\nThe photo session was excellent, Point Walter is so beautiful and David took time to choose the best place for us. Everyone was very helpful. Beautiful photo. Thank-you very much.\n<strong>Rose</strong>\n\nBoth David and Emily have been great in the service provided as well as their friendliness and being very helpful in every possible way.\n<strong>Ian Ong</strong>\n\nWorking with teenagers can be a difficult thing, especially when they are not willing participants in the task at hand. But David did a splendid job and our photo is testimony to that. Thank-you for the opportunity to participate.\n<strong>Helen Westcott</strong>\n\nLovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\nMany thanks,\n<strong>Beryl Price</strong>\n\nVery, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\nThanks,\n<strong>Dionne Smith and family</strong>\n\nAbsolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\nThank-you,\n<strong>John Garbin and family </strong>\n\nThe photos are gorgeous, we had a lot of fun at the river and David made Kyra feel completely at ease.\n\nThank-you,\n<strong>Christine, Mal and Kyra</strong>\n\nThank-you David and Emily\n\nOur family enjoyed the photo shoot, the professional approach to the job, but the friendly and relaxing time we spent with you. The photos are superb and we will enjoy them till we can’t see any more!\n\nVery best wishes to you both…. <strong>Bev Flockart</strong>\n\nThanks so much Emily and David for making me feel so comfortable during the shoot. We all enjoyed ourselves thoroughly. So THANKS!\n<strong>Pamela</strong>","Testimonials","","inherit","open","open","","18-revision-8","","","2012-09-15 07:35:44","2012-09-15 07:35:44","","18","http://www.livingimagephotography.com.au/18-revision-8/","0","revision","","0");
INSERT INTO wp_posts VALUES("570","1","2012-09-15 08:24:03","2012-09-15 08:24:03","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\">[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met</p>\n<br />\n<p style=\"text-align: right;\"><strong>-Michelle Matthewman </strong></p>[/quote]\n<p style=\"text-align: left;\">[quote]The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\n<br />\n<p style=\"text-align: right;\"><strong>- James &amp; Kristen Green </strong></p>[/quote]\n[quote]Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n<p style=\"text-align: right\";><strong>Cheers,\n</strong><strong>Jen Drysdale</strong></p>[/quote]\n\n[quote]Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinly had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thankyou Simon.\n<p style=\"text-align: right\";><strong>-Maureen Wills </strong></p>[/quote]\n\n[quote]Dear Simon and Amy,\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\n<strong>Thank you.\n<p style=\"text-align:right\";>-Danny, Gina, Rebecca and Alex.</strong></p>[/quote]\n\n[quote]I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\n<p style=\"text-align: right\";><strong>-Carly Hansen</strong></p>[/quote]\n\n[quote]Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\n<strong>See it here</strong>&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\">The Strands Of Me</a> </em>[/quote]\n\n[quote]Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<p style=\"text-align: right\";><strong>Cheers\nJess and Ben</strong>[/quote]\n\n[quote]DAVID IS AWESOME!!!\nWe had a great time, it was relaxed, comfortable and the location of the photo shoot was wonderful! David was great with the kids, he has a wonderful personality which allowed us to feel welcomed and be ourselves! Emily and David you are both wonderful professionals who made us feel more like friends than clients…</em></em>\n\nGood luck for the future\n\n<p style=\"text-align: right\";><strong>Kind Regards,\nKatine, Evan, Ecrini, Nickolas and Stavros Maounis</strong></p>\n\n\nPS – Emily was awesome too xx[/quote]\n\n[quote]What a fantastic experience!\n\n<em><em>On our way driving to our ‘photo shoot’ we were starting to think ‘What are we doing?’ thinking we would be too anxious and self conscious. All that went out of the window within minutes of meeting David. We had so much fun and it showed in the photos – which are so BEAUTIFUL! We have wonderful memories of the day too (we’ll never forget the ‘Drunken Scotsman dance’!). Thank-you so much Emily for your enthusiasm and patience… ‘Emily show us that one again, and that one, no that one – and can you show us them all again??’ Such a wonderful time and lovely photos to keep forever!\n\n<p style=\"text-align: right\";><strong>See you next time,\nNatalie and Ewen Gibb</strong></p>[quote]\n\n[quote]Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderful photos had been captured of our ugly mugs!\n\n<p style=\"text-align: right\";><strong>Thanks again,\nAnne and Owen Kruger</strong></p>[/quote]\n\n\n[quote]We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\nIt was a great day – one I would recommend to anyone\n\n<p style=\"text-align: right\";><strong>Thanks so much,\nSimone Faulkner</strong></p>[/quote]\n\n\n\n[quote]Thanks guys for a great experience\n\nIt was the first family shoot for the grandparents, but David was very patient with everyone and kept everyone nice and relaxed. The pictures turned out amazing with lots of creative shoots. Thanks again for the opportunity to capture our little bubs and the free gift is lovely\n\n<p style=\"text-align: right\";><strong>Elson &amp; Karen Goh</p></strong>[/quote]\n\n\n[quote]David and Emily.\n\nOur photos are just amazing. We will never forget the great work that you guys have done. I will be recommending you to everyone in my community. It was great fun working with you guys. We wish you great luck for an everlasting success.\n\n<p style=\"text-align: right\";><strong>Shekhar, Vaishali and Shanti</strong></p>[/quote]\n\n[quote]Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!\n\n<p style=\"text-align: right\";><strong>The Trusso Family</strong></p>[/quote]\n\n\n\n[quote]Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! \n\n<p style=\"text-align:right\";><strong>Herman and Sol</strong></p>[/quote]\n\n[quote]Great photos! Great Service! Very professional people, very happy with everything! \n\n<p style=\"text-align: right\";><strong>Thanks\nHenneker Family</strong></p>[/quote]\n\n[quote]Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!\n\n<p style=\"text-align:right\";><strong>Mohamed Family</strong></p>[/quote]\n\n[quote]Hey guys!\n\nThank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.\n\n<strong><p style=\"text-align: right\";>Cheers,\n<strong>Robert Hart</strong></p>[/quote]\n\n[quote]Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.\n\n<p style=\"text-align: right\";><strong>Lyn and Rocco</p></strong>[/quote]\n\n[quote]A very pleasant experience. Living Image was very professional and accommodating.\n\n<p style=\"text-align:right\";><strong>Marty</p></strong>[/quote]\n\n[quote]We had a good time, very professional and friendly people.\n\n<strong><p style=\"text-align:right\";>Thank-you.\nJorge and Aracely</strong></p>[/quote]\n\n[quote]Excellent posing and lighting effects. Friendly and most accommodations. Great presentation in an environment that was relaxing and professional.\n\nVery impressed with finished product and  good manners from Emily and David.\n\n<p style=\"text-align:right\";><strong>Most Appreciated,\nJill and Paul Bronson</strong></p>[/quote]\n\n[quote]Very Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n\n<p style=\"text-align:right\";><strong>Edward Rynne</strong>[/quote]\n\n[quote]Thanks, great photos. Pleasant experience.\n\n<p style=\"text-align: right\";><strong>John and Antonella Calabrese</p></strong>[/quote]\n\n[quote]We’re very happy with the photos.\n\n<strong><p style=\"text-align\";>good job,\nHenry and Patricia Adie-Cooper</strong></p>[/quote]\n\n[quote]Thanks! Billiant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n\n<p style=\"text-align: right\";><strong>Elaine and Noel Walters</strong></p>[/quote]\n\n[quote]We had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\n<strong><p style=\"text-align: right\";>Thanks,\nDerek Wall</strong></p>[/quote]\n\n[quote]A very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. \n\n<strong><p style=\"text-align: right\";>Thank-you,\nOtto and Jeannie Ashboth</strong></p>[/quote]\n\n[quote]Thanks for the fantastic photos and for being so patient handling all the young children.\n\n<p style=\"text-align: right\";><strong>Don</strong></p>[/quote]\n\n[quote]The photo session was excellent, Point Walter is so beautiful and David took time to choose the best place for us. Everyone was very helpful. Beautiful photo. Thank-you very much.\n\n<p style=\"text-align: right\";><strong>Rose</strong></p>[/quote]\n\n[quote]Both David and Emily have been great in the service provided as well as their friendliness and being very helpful in every possible way.\n\n<p style=\"text-align: right\";><strong>Ian Ong</strong></p>[/quote]\n\n[quote]Working with teenagers can be a difficult thing, especially when they are not willing participants in the task at hand. But David did a splendid job and our photo is testimony to that. Thank-you for the opportunity to participate.\n\n<p style=\"text-align: right\";><strong>Helen Westcott</strong></p>[/quote]\n\n[quote]Lovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\n<strong><p style=\"text-align: right\";>Many thanks,\nBeryl Price</p></strong>[/quote]\n\n[quote]Very, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\n<strong><p style=\"text-align:right\";>Thanks,\nDionne Smith and family</p></strong>[/quote]\n\n[quote]Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\n<strong><p style=\"text-align: right\";>Thank you,\nJohn Garbin and family </p></strong>[/quote]\n\n[quote]The photos are gorgeous, we had a lot of fun at the river and David made Kyra feel completely at ease.\n\n<strong><p style=\"text-align: right\";>Thank-you,\nChristine, Mal and Kyra</p></strong>[/quote]\n\n[quote]Thank you David and Emily\n\nOur family enjoyed the photo shoot, the professional approach to the job, but the friendly and relaxing time we spent with you. The photos are superb and we will enjoy them till we can’t see any more!\n\nVery best wishes to you both…. \n\n<strong><p style=\"text-align: right\";>Bev Flockart</p></strong>[/quote]\n\n[quote]Thanks so much Emily and David for making me feel so comfortable during the shoot. We all enjoyed ourselves thoroughly. So THANKS!\n\n<strong><p style=\"text-align: right\";>Pamela</p></strong>[/quote]","Testimonials","","inherit","open","open","","18-revision-9","","","2012-09-15 08:24:03","2012-09-15 08:24:03","","18","http://www.livingimagephotography.com.au/18-revision-9/","0","revision","","0");
INSERT INTO wp_posts VALUES("571","1","2012-09-15 08:25:40","2012-09-15 08:25:40","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\">[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met</p>\n<br />\n<p style=\"text-align: right;\"><strong>-Michelle Matthewman </strong></p>[/quote]\n<p style=\"text-align: left;\">[quote]The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\n<br />\n<p style=\"text-align: right;\"><strong>- James &amp; Kristen Green </strong></p>[/quote]\n[quote]Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n<p style=\"text-align: right\";><strong>Cheers,\n</strong><strong>Jen Drysdale</strong></p>[/quote]\n\n[quote]Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinely had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thank you Simon.\n<p style=\"text-align: right\";><strong>-Maureen Wills </strong></p>[/quote]\n\n[quote]Dear Simon and Amy,\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\n<strong>Thank you.\n<p style=\"text-align:right\";>-Danny, Gina, Rebecca and Alex.</strong></p>[/quote]\n\n[quote]I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\n<p style=\"text-align: right\";><strong>-Carly Hansen</strong></p>[/quote]\n\n[quote]Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\n<strong>See it here</strong>&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\">The Strands Of Me</a> </em>[/quote]\n\n[quote]Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<p style=\"text-align: right\";><strong>Cheers\nJess and Ben</strong>[/quote]\n\n[quote]DAVID IS AWESOME!!!\nWe had a great time, it was relaxed, comfortable and the location of the photo shoot was wonderful! David was great with the kids, he has a wonderful personality which allowed us to feel welcomed and be ourselves! Emily and David you are both wonderful professionals who made us feel more like friends than clients…</em></em>\n\nGood luck for the future\n\n<p style=\"text-align: right\";><strong>Kind Regards,\nKatine, Evan, Ecrini, Nickolas and Stavros Maounis</strong></p>\n\n\nPS – Emily was awesome too xx[/quote]\n\n[quote]What a fantastic experience!\n\n<em><em>On our way driving to our ‘photo shoot’ we were starting to think ‘What are we doing?’ thinking we would be too anxious and self conscious. All that went out of the window within minutes of meeting David. We had so much fun and it showed in the photos – which are so BEAUTIFUL! We have wonderful memories of the day too (we’ll never forget the ‘Drunken Scotsman dance’!). Thank-you so much Emily for your enthusiasm and patience… ‘Emily show us that one again, and that one, no that one – and can you show us them all again??’ Such a wonderful time and lovely photos to keep forever!\n\n<p style=\"text-align: right\";><strong>See you next time,\nNatalie and Ewen Gibb</strong></p>[quote]\n\n[quote]Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderful photos had been captured of our ugly mugs!\n\n<p style=\"text-align: right\";><strong>Thanks again,\nAnne and Owen Kruger</strong></p>[/quote]\n\n\n[quote]We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\nIt was a great day – one I would recommend to anyone\n\n<p style=\"text-align: right\";><strong>Thanks so much,\nSimone Faulkner</strong></p>[/quote]\n\n\n\n[quote]Thanks guys for a great experience\n\nIt was the first family shoot for the grandparents, but David was very patient with everyone and kept everyone nice and relaxed. The pictures turned out amazing with lots of creative shoots. Thanks again for the opportunity to capture our little bubs and the free gift is lovely\n\n<p style=\"text-align: right\";><strong>Elson &amp; Karen Goh</p></strong>[/quote]\n\n\n[quote]David and Emily.\n\nOur photos are just amazing. We will never forget the great work that you guys have done. I will be recommending you to everyone in my community. It was great fun working with you guys. We wish you great luck for an everlasting success.\n\n<p style=\"text-align: right\";><strong>Shekhar, Vaishali and Shanti</strong></p>[/quote]\n\n[quote]Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!\n\n<p style=\"text-align: right\";><strong>The Trusso Family</strong></p>[/quote]\n\n\n\n[quote]Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! \n\n<p style=\"text-align:right\";><strong>Herman and Sol</strong></p>[/quote]\n\n[quote]Great photos! Great Service! Very professional people, very happy with everything! \n\n<p style=\"text-align: right\";><strong>Thanks\nHenneker Family</strong></p>[/quote]\n\n[quote]Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!\n\n<p style=\"text-align:right\";><strong>Mohamed Family</strong></p>[/quote]\n\n[quote]Hey guys!\n\nThank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.\n\n<strong><p style=\"text-align: right\";>Cheers,\n<strong>Robert Hart</strong></p>[/quote]\n\n[quote]Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.\n\n<p style=\"text-align: right\";><strong>Lyn and Rocco</p></strong>[/quote]\n\n[quote]A very pleasant experience. Living Image was very professional and accommodating.\n\n<p style=\"text-align:right\";><strong>Marty</p></strong>[/quote]\n\n[quote]We had a good time, very professional and friendly people.\n\n<strong><p style=\"text-align:right\";>Thank-you.\nJorge and Aracely</strong></p>[/quote]\n\n[quote]Excellent posing and lighting effects. Friendly and most accommodations. Great presentation in an environment that was relaxing and professional.\n\nVery impressed with finished product and  good manners from Emily and David.\n\n<p style=\"text-align:right\";><strong>Most Appreciated,\nJill and Paul Bronson</strong></p>[/quote]\n\n[quote]Very Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n\n<p style=\"text-align:right\";><strong>Edward Rynne</strong>[/quote]\n\n[quote]Thanks, great photos. Pleasant experience.\n\n<p style=\"text-align: right\";><strong>John and Antonella Calabrese</p></strong>[/quote]\n\n[quote]We’re very happy with the photos.\n\n<strong><p style=\"text-align\";>good job,\nHenry and Patricia Adie-Cooper</strong></p>[/quote]\n\n[quote]Thanks! Brilliant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n\n<p style=\"text-align: right\";><strong>Elaine and Noel Walters</strong></p>[/quote]\n\n[quote]We had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\n<strong><p style=\"text-align: right\";>Thanks,\nDerek Wall</strong></p>[/quote]\n\n[quote]A very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. \n\n<strong><p style=\"text-align: right\";>Thank-you,\nOtto and Jeannie Ashboth</strong></p>[/quote]\n\n[quote]Thanks for the fantastic photos and for being so patient handling all the young children.\n\n<p style=\"text-align: right\";><strong>Don</strong></p>[/quote]\n\n[quote]The photo session was excellent, Point Walter is so beautiful and David took time to choose the best place for us. Everyone was very helpful. Beautiful photo. Thank-you very much.\n\n<p style=\"text-align: right\";><strong>Rose</strong></p>[/quote]\n\n[quote]Both David and Emily have been great in the service provided as well as their friendliness and being very helpful in every possible way.\n\n<p style=\"text-align: right\";><strong>Ian Ong</strong></p>[/quote]\n\n[quote]Working with teenagers can be a difficult thing, especially when they are not willing participants in the task at hand. But David did a splendid job and our photo is testimony to that. Thank-you for the opportunity to participate.\n\n<p style=\"text-align: right\";><strong>Helen Westcott</strong></p>[/quote]\n\n[quote]Lovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\n<strong><p style=\"text-align: right\";>Many thanks,\nBeryl Price</p></strong>[/quote]\n\n[quote]Very, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\n<strong><p style=\"text-align:right\";>Thanks,\nDionne Smith and family</p></strong>[/quote]\n\n[quote]Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\n<strong><p style=\"text-align: right\";>Thank you,\nJohn Garbin and family </p></strong>[/quote]\n\n[quote]The photos are gorgeous, we had a lot of fun at the river and David made Kyra feel completely at ease.\n\n<strong><p style=\"text-align: right\";>Thank-you,\nChristine, Mal and Kyra</p></strong>[/quote]\n\n[quote]Thank you David and Emily\n\nOur family enjoyed the photo shoot, the professional approach to the job, but the friendly and relaxing time we spent with you. The photos are superb and we will enjoy them till we can’t see any more!\n\nVery best wishes to you both…. \n\n<strong><p style=\"text-align: right\";>Bev Flockart</p></strong>[/quote]\n\n[quote]Thanks so much Emily and David for making me feel so comfortable during the shoot. We all enjoyed ourselves thoroughly. So THANKS!\n\n<strong><p style=\"text-align: right\";>Pamela</p></strong>[/quote]","Testimonials","","inherit","open","open","","18-revision-10","","","2012-09-15 08:25:40","2012-09-15 08:25:40","","18","http://www.livingimagephotography.com.au/18-revision-10/","0","revision","","0");
INSERT INTO wp_posts VALUES("572","1","2012-09-15 08:30:07","2012-09-15 08:30:07","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\">[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met</p>\n<br />\n<p style=\"text-align: right;\"><strong>-Michelle Matthewman </strong></p>[/quote]\n<p style=\"text-align: left;\">[quote]The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\n<br />\n<p style=\"text-align: right;\"><strong>- James &amp; Kristen Green </strong></p>[/quote]\n[quote]Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n<p style=\"text-align: right\";><strong>Cheers,\n</strong><strong>Jen Drysdale</strong></p>[/quote]\n\n[quote]Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinely had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thank you Simon.\n<p style=\"text-align: right\";><strong>-Maureen Wills </strong></p>[/quote]\n\n[quote]Dear Simon and Amy,\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\n\n\n<p style=\"text-align:right\";><strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></p>[/quote]\n\n[quote]I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\n<p style=\"text-align: right\";><strong>-Carly Hansen</strong></p>[/quote]\n\n[quote]Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\n<strong>See it here</strong>&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\"><h6>The Strands Of Me</h6></a> </em>[/quote]\n\n[quote]Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<p style=\"text-align: right\";><strong>Cheers\nJess and Ben</strong>[/quote]\n\n[quote]DAVID IS AWESOME!!!\nWe had a great time, it was relaxed, comfortable and the location of the photo shoot was wonderful! David was great with the kids, he has a wonderful personality which allowed us to feel welcomed and be ourselves! Emily and David you are both wonderful professionals who made us feel more like friends than clients…</em></em>\n\nGood luck for the future\n\n<p style=\"text-align: right\";><strong>Kind Regards,\nKatine, Evan, Ecrini, Nickolas and Stavros Maounis</strong></p>\n\n\nPS – Emily was awesome too xx[/quote]\n\n[quote]What a fantastic experience!\n\n<em><em>On our way driving to our ‘photo shoot’ we were starting to think ‘What are we doing?’ thinking we would be too anxious and self conscious. All that went out of the window within minutes of meeting David. We had so much fun and it showed in the photos – which are so BEAUTIFUL! We have wonderful memories of the day too (we’ll never forget the ‘Drunken Scotsman dance’!). Thank-you so much Emily for your enthusiasm and patience… ‘Emily show us that one again, and that one, no that one – and can you show us them all again??’ Such a wonderful time and lovely photos to keep forever!\n\n<p style=\"text-align: right\";><strong>See you next time,\nNatalie and Ewen Gibb</strong></p>[/quote]\n\n[quote]Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderful photos had been captured of our ugly mugs!\n\n<p style=\"text-align: right\";><strong>Thanks again,\nAnne and Owen Kruger</strong></p>[/quote]\n\n\n[quote]We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\nIt was a great day – one I would recommend to anyone\n\n<p style=\"text-align: right\";><strong>Thanks so much,\nSimone Faulkner</strong></p>[/quote]\n\n\n\n[quote]Thanks guys for a great experience\n\nIt was the first family shoot for the grandparents, but David was very patient with everyone and kept everyone nice and relaxed. The pictures turned out amazing with lots of creative shoots. Thanks again for the opportunity to capture our little bubs and the free gift is lovely\n\n<p style=\"text-align: right\";><strong>Elson &amp; Karen Goh</p></strong>[/quote]\n\n\n[quote]David and Emily.\n\nOur photos are just amazing. We will never forget the great work that you guys have done. I will be recommending you to everyone in my community. It was great fun working with you guys. We wish you great luck for an everlasting success.\n\n<p style=\"text-align: right\";><strong>Shekhar, Vaishali and Shanti</strong></p>[/quote]\n\n[quote]Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!\n\n<p style=\"text-align: right\";><strong>The Trusso Family</strong></p>[/quote]\n\n\n\n[quote]Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! \n\n<p style=\"text-align:right\";><strong>Herman and Sol</strong></p>[/quote]\n\n[quote]Great photos! Great Service! Very professional people, very happy with everything! \n\n<p style=\"text-align: right\";><strong>Thanks\nHenneker Family</strong></p>[/quote]\n\n[quote]Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!\n\n<p style=\"text-align:right\";><strong>Mohamed Family</strong></p>[/quote]\n\n[quote]Hey guys!\n\nThank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.\n\n<strong><p style=\"text-align: right\";>Cheers,\nRobert Hart</strong></p>[/quote]\n\n[quote]Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.\n\n<p style=\"text-align: right\";><strong>Lyn and Rocco</p></strong>[/quote]\n\n[quote]A very pleasant experience. Living Image was very professional and accommodating.\n\n<p style=\"text-align:right\";><strong>Marty</p></strong>[/quote]\n\n[quote]We had a good time, very professional and friendly people.\n\n<strong><p style=\"text-align:right\";>Thank-you.\nJorge and Aracely</strong></p>[/quote]\n\n[quote]Excellent posing and lighting effects. Friendly and most accommodations. Great presentation in an environment that was relaxing and professional.\n\nVery impressed with finished product and  good manners from Emily and David.\n\n<p style=\"text-align:right\";><strong>Most Appreciated,\nJill and Paul Bronson</strong></p>[/quote]\n\n[quote]Very Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n\n<p style=\"text-align:right\";><strong>Edward Rynne</strong>[/quote]\n\n[quote]Thanks, great photos. Pleasant experience.\n\n<p style=\"text-align: right\";><strong>John and Antonella Calabrese</p></strong>[/quote]\n\n[quote]We’re very happy with the photos.\n\n<strong><p style=\"text-align\";>good job,\nHenry and Patricia Adie-Cooper</strong></p>[/quote]\n\n[quote]Thanks! Brilliant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n\n<p style=\"text-align: right\";><strong>Elaine and Noel Walters</strong></p>[/quote]\n\n[quote]We had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\n<strong><p style=\"text-align: right\";>Thanks,\nDerek Wall</strong></p>[/quote]\n\n[quote]A very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. \n\n<strong><p style=\"text-align: right\";>Thank-you,\nOtto and Jeannie Ashboth</strong></p>[/quote]\n\n[quote]Thanks for the fantastic photos and for being so patient handling all the young children.\n\n<p style=\"text-align: right\";><strong>Don</strong></p>[/quote]\n\n[quote]The photo session was excellent, Point Walter is so beautiful and David took time to choose the best place for us. Everyone was very helpful. Beautiful photo. Thank-you very much.\n\n<p style=\"text-align: right\";><strong>Rose</strong></p>[/quote]\n\n[quote]Both David and Emily have been great in the service provided as well as their friendliness and being very helpful in every possible way.\n\n<p style=\"text-align: right\";><strong>Ian Ong</strong></p>[/quote]\n\n[quote]Working with teenagers can be a difficult thing, especially when they are not willing participants in the task at hand. But David did a splendid job and our photo is testimony to that. Thank-you for the opportunity to participate.\n\n<p style=\"text-align: right\";><strong>Helen Westcott</strong></p>[/quote]\n\n[quote]Lovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\n<strong><p style=\"text-align: right\";>Many thanks,\nBeryl Price</p></strong>[/quote]\n\n[quote]Very, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\n<strong><p style=\"text-align:right\";>Thanks,\nDionne Smith and family</p></strong>[/quote]\n\n[quote]Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\n<strong><p style=\"text-align: right\";>Thank you,\nJohn Garbin and family </p></strong>[/quote]\n\n[quote]The photos are gorgeous, we had a lot of fun at the river and David made Kyra feel completely at ease.\n\n<strong><p style=\"text-align: right\";>Thank-you,\nChristine, Mal and Kyra</p></strong>[/quote]\n\n[quote]Thank you David and Emily\n\nOur family enjoyed the photo shoot, the professional approach to the job, but the friendly and relaxing time we spent with you. The photos are superb and we will enjoy them till we can’t see any more!\n\nVery best wishes to you both…. \n\n<strong><p style=\"text-align: right\";>Bev Flockart</p></strong>[/quote]\n\n[quote]Thanks so much Emily and David for making me feel so comfortable during the shoot. We all enjoyed ourselves thoroughly. So THANKS!\n\n<strong><p style=\"text-align: right\";>Pamela</p></strong>[/quote]","Testimonials","","inherit","open","open","","18-revision-11","","","2012-09-15 08:30:07","2012-09-15 08:30:07","","18","http://www.livingimagephotography.com.au/18-revision-11/","0","revision","","0");
INSERT INTO wp_posts VALUES("573","1","2012-09-15 09:08:13","2012-09-15 09:08:13","<h5>GIFT CERTIFICATES/PROMOTIONAL VOUCHERS:</h5>\nMust be redeemed by the holder prior to the expiry date, provided the holder has not redeemed a Competition Prize, Gift Certificate or Promotional Voucher with Living Image Photography in the last 6 months (date calculated from the previous sitting date). Prizes are for domestic portraiture and can not be used for commercial photography.\n<h5>TRANSFERABLE:</h5>\nPromotional Vouchers and Gift Certificates <strong>ARE</strong> transferable to family or friends. They are not exchangeable or redeemable in whole or in part for any cash equivalent. The vouchers and gift certificates cannot be used in conjunction with any other offer, prize or promotion. Only one (1) Gift Certificate or Promotional voucher/certificate can be used at a time.  You cannot use the gift certificate or promotional voucher to purchase products from any other photo sessions.\n<h5>FACEBOOK COMPETITION:</h5>\nBy entering our Facebook competition, the entrant acknowledges that the promotion is in no way sponsored, endorsed, administered by or associated with, Facebook in any way.\n<h5>ARTISTIC CONTROL:</h5>\nLiving Image Photography reserves artistic control over the design and content of each photoshoot. We may, at our discretion, decline to create certain types or styles of photography. We reserve the right to refuse to produce images at some sizes or combinations of sizes if we believe such images would or could be detrimental to our reputation as a professional studio or as professional photographers.\n\n<strong>Clients should discuss their requirements with the studio prior to the photoshoot.</strong>\n<h5>APPOINTMENT RESCHEDULE POLICY:</h5>\n<strong>Gift Certificates and Promotional Vouchers entitle the holder to a SINGLE APPOINTMENT ONLY. Once made, an appointment can not be rescheduled and the Gift Certificate or Promotional Voucher is deemed to have been used in full at that original appointment time and date.</strong>\n\n*NOTE: In exceptional circumstances, management may, at their sole discretion, reschedule an appointment and carry forward the Gift Certificate and holding fee / deposit.\n<h5>NO SHOW POLICY:</h5>\nNon attendance (NO SHOW) at an appointment without notice, will result in the forfeiture of the holding / deposit fee. The Gift Certificate or Promotional Voucher is then deemed to have been used in full.<strong>Living Image Photography reserves the right to then charge the appointment holder the full Sitting Fee of $150 (less the $50 holding deposit).</strong>\n<h5>COPYRIGHT:</h5>\nUnrestricted Copyright to all images created during the photo shoot that forms part of the Gift Certificate or Promotional Voucher or Referral Voucher is deemed to belong solely to Living Image Photography.\n<h5>PRIVACY:</h5>\nBy commissioning Living Image Photography to create images or by entering any promotion or competition, clients and or entrants understand and agree that Living Image Photography may use the information provided by them in accordance with National Privacy Principles. <a href=\"http://www.privacy.gov.au/\" target=\"_blank\">http://www.privacy.gov.au</a>","Terms and Conditions","","publish","open","open","","terms-and-conditions","","","2012-10-11 01:55:50","2012-10-11 01:55:50","","20","http://www.livingimagephotography.com.au/?page_id=573","0","page","","0");
INSERT INTO wp_posts VALUES("1168","1","2012-10-10 05:30:47","2012-10-10 05:30:47","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120. <strong><a href=\"http://shootthedog.com.au/book-now/\" target=\"_blank\">>> Book Now! <<</a></strong>\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" style=\"float:left\"></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" style=\"float:right\"></a>\n\n","Shoot the Dog","","inherit","open","open","","656-revision-46","","","2012-10-10 05:30:47","2012-10-10 05:30:47","","656","http://www.livingimagephotography.com.au/656-revision-46/","0","revision","","0");
INSERT INTO wp_posts VALUES("574","1","2012-09-15 08:49:17","2012-09-15 08:49:17","<h3>\'PLAY FAVORITE\' COMPETITION:</h3>\nEntry is open only to persons eighteen years and older, who are residents of Victoria or New South Wales and have <strong>not won a competition, prize or promotional item, through Living Image Photography in the last twelve months.</strong>\n\nTo enter, the completed online form must be received at the studio by the end of the promotion date. Entries not properly completed will be rejected. Late entries will not be accepted. Prize winners will be notified by mail, email or phone. The major prize winner will be the client with the most valid votes. The Major Prize winner will be entitled to up to $2000 worth of products from Living Image, to be redeemed from their recent session, to be used in one transaction, any unused balance will be forfeited. The Major Prize is valid for a period of three months from the date of notification. Consolation Prizes will have an expiry date printed on the Gift Certificate. Prizes are non transferable, not exchangeable or redeemable in whole or in part for any cash equivalent. Prizes cannot be used in conjunction with any other offer or promotion.\n<h3>APPOINTMENT HOLDING FEE/ DEPOSITS</h3>\n<strong>A holding fee / deposit of $50 will be required to secure and hold your appointment. This holding fee ensures your commitment to the scheduled appointment.</strong>\nThe holding fee / deposit will be returned to you at the presentation of the photographs following the photo shoot at the Ordering Session, provided that you have completed your appointment at the correctly scheduled time and date. Failure to attend or complete your scheduled appointment may result in the cancellation of any prize and the forfeiture of the holding fee at the sole discretion of studio management.\n<h3>GIFT CERTIFICATES/PROMOTIONAL VOUCHERS:</h3>\nMust be redeemed by the holder prior to the expiry date, provided the holder has not redeemed a Competition Prize, Gift Certificate or Promotional Voucher with Living Image Photography in the last 6 months (date calculated from the previous sitting date). Prizes are for domestic portraiture and can not be used for commercial photography.\n<h3>TRANSFERABLE:</h3>\nPromotional Vouchers and Gift Certificates <strong>ARE</strong> transferable to family or friends. They are not exchangeable or redeemable in whole or in part for any cash equivalent. The vouchers and gift certificates cannot be used in conjunction with any other offer, prize or promotion. Only one (1) Gift Certificate or Promotional voucher/certificate can be used at a time.  You cannot use the gift certificate or promotional voucher to purchase products from any other photo sessions.\n<h3>FACEBOOK COMPETITION:</h3>\nBy entering our Facebook competition, the entrant acknowledges that the promotion is in no way sponsored, endorsed, administered by or associated with, Facebook in any way.\n<h3>ARTISTIC CONTROL:</h3>\nLiving Image Photography reserves artistic control over the design and content of each photoshoot. We may, at our discretion, decline to create certain types or styles of photography. We reserve the right to refuse to produce images at some sizes or combinations of sizes if we believe such images would or could be detrimental to our reputation as a professional studio or as professional photographers.\n\n<strong>Clients should discuss their requirements with the studio prior to the photoshoot.</strong>\n<h3>APPOINTMENT RESCHEDULE POLICY:</h3>\n<strong>Gift Certificates and Promotional Vouchers entitle the holder to a SINGLE APPOINTMENT ONLY. Once made, an appointment can not be rescheduled and the Gift Certificate or Promotional Voucher is deemed to have been used in full at that original appointment time and date.</strong>\n\n*NOTE: In exceptional circumstances, management may, at their sole discretion, reschedule an appointment and carry forward the Gift Certificate and holding fee / deposit.\n<h3>NO SHOW POLICY:</h3>\nNon attendance (NO SHOW) at an appointment without notice, will result in the forfeiture of the holding / deposit fee. The Gift Certificate or Promotional Voucher is then deemed to have been used in full.<strong>Living Image Photography reserves the right to then charge the appointment holder the full Sitting Fee of $150 (less the $50 holding deposit).</strong>\n<h3>COPYRIGHT:</h3>\nUnrestricted Copyright to all images created during the photo shoot that forms part of the Gift Certificate or Promotional Voucher or Referral Voucher is deemed to belong solely to Living Image Photography.\n<h3>PRIVACY:</h3>\nBy commissioning Living Image Photography to create images or by entering any promotion or competition, clients and or entrants understand and agree that Living Image Photography may use the information provided by them in accordance with National Privacy Principles. <a href=\"http://www.privacy.gov.au/\" target=\"_blank\">http://www.privacy.gov.au</a>","Terms and Conditions","","inherit","open","open","","573-revision","","","2012-09-15 08:49:17","2012-09-15 08:49:17","","573","http://www.livingimagephotography.com.au/573-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("1167","1","2012-10-09 04:54:30","2012-10-09 04:54:30","","Childrens Portraits","","inherit","open","open","","895-revision-5","","","2012-10-09 04:54:30","2012-10-09 04:54:30","","895","http://www.livingimagephotography.com.au/895-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("575","1","2012-09-15 09:44:05","2012-09-15 09:44:05","<h5>\'PLAY FAVORITE\' COMPETITION:</h5>\nEntry is open only to persons eighteen years and older, who are residents of Victoria or New South Wales and have <strong>not won a competition, prize or promotional item, through Living Image Photography in the last twelve months.</strong>\n\nTo enter, the completed online form must be received at the studio by the end of the promotion date. Entries not properly completed will be rejected. Late entries will not be accepted. Prize winners will be notified by mail, email or phone. The major prize winner will be the client with the most valid votes. The Major Prize winner will be entitled to up to $2000 worth of products from Living Image, to be redeemed from their recent session, to be used in one transaction, any unused balance will be forfeited. The Major Prize is valid for a period of three months from the date of notification. Consolation Prizes will have an expiry date printed on the Gift Certificate. Prizes are non transferable, not exchangeable or redeemable in whole or in part for any cash equivalent. Prizes cannot be used in conjunction with any other offer or promotion.\n<h5>APPOINTMENT HOLDING FEE/ DEPOSITS</h5>\n<strong>A holding fee / deposit of $50 will be required to secure and hold your appointment. This holding fee ensures your commitment to the scheduled appointment.</strong>\nThe holding fee / deposit will be returned to you at the presentation of the photographs following the photo shoot at the Ordering Session, provided that you have completed your appointment at the correctly scheduled time and date. Failure to attend or complete your scheduled appointment may result in the cancellation of any prize and the forfeiture of the holding fee at the sole discretion of studio management.\n<h5>GIFT CERTIFICATES/PROMOTIONAL VOUCHERS:</h5>\nMust be redeemed by the holder prior to the expiry date, provided the holder has not redeemed a Competition Prize, Gift Certificate or Promotional Voucher with Living Image Photography in the last 6 months (date calculated from the previous sitting date). Prizes are for domestic portraiture and can not be used for commercial photography.\n<h5>TRANSFERABLE:</h5>\nPromotional Vouchers and Gift Certificates <strong>ARE</strong> transferable to family or friends. They are not exchangeable or redeemable in whole or in part for any cash equivalent. The vouchers and gift certificates cannot be used in conjunction with any other offer, prize or promotion. Only one (1) Gift Certificate or Promotional voucher/certificate can be used at a time.  You cannot use the gift certificate or promotional voucher to purchase products from any other photo sessions.\n<h5>FACEBOOK COMPETITION:</h5>\nBy entering our Facebook competition, the entrant acknowledges that the promotion is in no way sponsored, endorsed, administered by or associated with, Facebook in any way.\n<h5>ARTISTIC CONTROL:</h5>\nLiving Image Photography reserves artistic control over the design and content of each photoshoot. We may, at our discretion, decline to create certain types or styles of photography. We reserve the right to refuse to produce images at some sizes or combinations of sizes if we believe such images would or could be detrimental to our reputation as a professional studio or as professional photographers.\n\n<strong>Clients should discuss their requirements with the studio prior to the photoshoot.</strong>\n<h5>APPOINTMENT RESCHEDULE POLICY:</h5>\n<strong>Gift Certificates and Promotional Vouchers entitle the holder to a SINGLE APPOINTMENT ONLY. Once made, an appointment can not be rescheduled and the Gift Certificate or Promotional Voucher is deemed to have been used in full at that original appointment time and date.</strong>\n\n*NOTE: In exceptional circumstances, management may, at their sole discretion, reschedule an appointment and carry forward the Gift Certificate and holding fee / deposit.\n<h5>NO SHOW POLICY:</h3>\nNon attendance (NO SHOW) at an appointment without notice, will result in the forfeiture of the holding / deposit fee. The Gift Certificate or Promotional Voucher is then deemed to have been used in full.<strong>Living Image Photography reserves the right to then charge the appointment holder the full Sitting Fee of $150 (less the $50 holding deposit).</strong>\n<h3>COPYRIGHT:</h3>\nUnrestricted Copyright to all images created during the photo shoot that forms part of the Gift Certificate or Promotional Voucher or Referral Voucher is deemed to belong solely to Living Image Photography.\n<h3>PRIVACY:</h3>\nBy commissioning Living Image Photography to create images or by entering any promotion or competition, clients and or entrants understand and agree that Living Image Photography may use the information provided by them in accordance with National Privacy Principles. <a href=\"http://www.privacy.gov.au/\" target=\"_blank\">http://www.privacy.gov.au</a>","Terms and Conditions","","inherit","open","open","","573-autosave","","","2012-09-15 09:44:05","2012-09-15 09:44:05","","573","http://www.livingimagephotography.com.au/573-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("576","1","2012-09-15 09:08:13","2012-09-15 09:08:13","<h3>\'PLAY FAVORITE\' COMPETITION:</h3>\nEntry is open only to persons eighteen years and older, who are residents of Victoria or New South Wales and have <strong>not won a competition, prize or promotional item, through Living Image Photography in the last twelve months.</strong>\n\nTo enter, the completed online form must be received at the studio by the end of the promotion date. Entries not properly completed will be rejected. Late entries will not be accepted. Prize winners will be notified by mail, email or phone. The major prize winner will be the client with the most valid votes. The Major Prize winner will be entitled to up to $2000 worth of products from Living Image, to be redeemed from their recent session, to be used in one transaction, any unused balance will be forfeited. The Major Prize is valid for a period of three months from the date of notification. Consolation Prizes will have an expiry date printed on the Gift Certificate. Prizes are non transferable, not exchangeable or redeemable in whole or in part for any cash equivalent. Prizes cannot be used in conjunction with any other offer or promotion.\n<h3>APPOINTMENT HOLDING FEE/ DEPOSITS</h3>\n<strong>A holding fee / deposit of $50 will be required to secure and hold your appointment. This holding fee ensures your commitment to the scheduled appointment.</strong>\nThe holding fee / deposit will be returned to you at the presentation of the photographs following the photo shoot at the Ordering Session, provided that you have completed your appointment at the correctly scheduled time and date. Failure to attend or complete your scheduled appointment may result in the cancellation of any prize and the forfeiture of the holding fee at the sole discretion of studio management.\n<h3>GIFT CERTIFICATES/PROMOTIONAL VOUCHERS:</h3>\nMust be redeemed by the holder prior to the expiry date, provided the holder has not redeemed a Competition Prize, Gift Certificate or Promotional Voucher with Living Image Photography in the last 6 months (date calculated from the previous sitting date). Prizes are for domestic portraiture and can not be used for commercial photography.\n<h3>TRANSFERABLE:</h3>\nPromotional Vouchers and Gift Certificates <strong>ARE</strong> transferable to family or friends. They are not exchangeable or redeemable in whole or in part for any cash equivalent. The vouchers and gift certificates cannot be used in conjunction with any other offer, prize or promotion. Only one (1) Gift Certificate or Promotional voucher/certificate can be used at a time.  You cannot use the gift certificate or promotional voucher to purchase products from any other photo sessions.\n<h3>FACEBOOK COMPETITION:</h3>\nBy entering our Facebook competition, the entrant acknowledges that the promotion is in no way sponsored, endorsed, administered by or associated with, Facebook in any way.\n<h3>ARTISTIC CONTROL:</h3>\nLiving Image Photography reserves artistic control over the design and content of each photoshoot. We may, at our discretion, decline to create certain types or styles of photography. We reserve the right to refuse to produce images at some sizes or combinations of sizes if we believe such images would or could be detrimental to our reputation as a professional studio or as professional photographers.\n\n<strong>Clients should discuss their requirements with the studio prior to the photoshoot.</strong>\n<h3>APPOINTMENT RESCHEDULE POLICY:</h3>\n<strong>Gift Certificates and Promotional Vouchers entitle the holder to a SINGLE APPOINTMENT ONLY. Once made, an appointment can not be rescheduled and the Gift Certificate or Promotional Voucher is deemed to have been used in full at that original appointment time and date.</strong>\n\n*NOTE: In exceptional circumstances, management may, at their sole discretion, reschedule an appointment and carry forward the Gift Certificate and holding fee / deposit.\n<h3>NO SHOW POLICY:</h3>\nNon attendance (NO SHOW) at an appointment without notice, will result in the forfeiture of the holding / deposit fee. The Gift Certificate or Promotional Voucher is then deemed to have been used in full.<strong>Living Image Photography reserves the right to then charge the appointment holder the full Sitting Fee of $150 (less the $50 holding deposit).</strong>\n<h3>COPYRIGHT:</h3>\nUnrestricted Copyright to all images created during the photo shoot that forms part of the Gift Certificate or Promotional Voucher or Referral Voucher is deemed to belong solely to Living Image Photography.\n<h3>PRIVACY:</h3>\nBy commissioning Living Image Photography to create images or by entering any promotion or competition, clients and or entrants understand and agree that Living Image Photography may use the information provided by them in accordance with National Privacy Principles. <a href=\"http://www.privacy.gov.au/\" target=\"_blank\">http://www.privacy.gov.au</a>","Terms and Conditions","","inherit","open","open","","573-revision-2","","","2012-09-15 09:08:13","2012-09-15 09:08:13","","573","http://www.livingimagephotography.com.au/573-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("577","1","2012-09-15 09:46:07","2012-09-15 09:46:07"," ","","","publish","open","open","","577","","","2012-10-11 01:12:14","2012-10-11 01:12:14","","20","http://www.livingimagephotography.com.au/?p=577","29","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("578","1","2012-09-15 09:51:56","2012-09-15 09:51:56","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><h6>Traditional Fine Art Albums</h6><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/portrait_alb1.jpg\" alt=\"\" width=\"\" height=\"\" /></a>A stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><h6>Designer Magazine Albums</h6><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/designer_alb2.jpg\" alt=\"\" width=\"\" height=\"\" /></a>\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Albums","","publish","open","open","","fine-art-albums","","","2012-10-10 06:55:17","2012-10-10 06:55:17","","10","http://www.livingimagephotography.com.au/?page_id=578","0","page","","0");
INSERT INTO wp_posts VALUES("579","1","2012-09-15 09:51:53","2012-09-15 09:51:53","","Fine Art Albums","","inherit","open","open","","578-revision","","","2012-09-15 09:51:53","2012-09-15 09:51:53","","578","http://www.livingimagephotography.com.au/578-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("580","1","2012-09-15 09:54:57","2012-09-15 09:54:57","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><h6>Visage</h6><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><h6>Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Amour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\n1 large portrait, flanked on one side by two more portraits. This collection suits bedrooms and living areas, and is perfect for a couple\'s portrait or family portrait. The Amour is available in 2 finishes: Acrylic and ArtMount.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><h6>Plus D\'Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Plus D\'Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Plus\'DAmour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\nThis beautiful collection includes 5 portraits, with one main feature, surrounded by 4 complimentary portraits. The Plus D\'Amour will liven a medium to large living room, and even works beutifully in a master bedroom. It\'s perfectly suited to family portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><h6>Trois</h6><img class=\"alignleft size-full wp-image-590\" title=\"Trois\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Trois_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\nThe Trois is a great addition to any room, with three vertical panels and size options for 10inch to 40inch prints it\'s designed to suit all spaces. The Trois is the ideal choice for family portraits, children\'s portraits or couples, it makes a real statement.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><h6>Enjoue</h6><img class=\"alignleft size-full wp-image-590\" title=\"Enjoue\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Enjoue_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\nFor a wonderful alternative to our Trois portrait collection, the Enjoue provides you with 1 landscape, or horizontal portrait flanked by a vertical portrait on each side. The Enjoue collection will make an amazing impact in your rooms, suited to medium and larger sized spaces.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><h6>Unique</h6><img class=\"alignleft size-full wp-image-590\" title=\"Unique\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Unique_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA Unique collection is our option for single portraits of any size. A wonderful option to make a blod statement with one large portrait. From our 10inch portraits up to our large \"sofa sized\" 40inch portraits the choice is yours!<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<h1>Finishes</h1>\n\nWe have a range of alternative finishes for your portraits that are available on most of our collections. Our range of finishes are designed to suit any style of decor. \n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CanvasPortraits.jpg\" target=\"_blank\"><h6>Canvas</h6><img class=\"alignleft size-full wp-image-590\" title=\"Canvas Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Canvas_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nContemporary and timeless, our canvas finish is a brilliant way to display your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CanvasPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ArtMountPortraits.jpg\" target=\"_blank\"><h6>Art Mount</h6><img class=\"alignleft size-full wp-image-590\" title=\"Art Mount Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Art-Mount_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA great alternative finish for your portraits, perfect for a large collection of portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ArtMountPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/AcrylicPortraits.jpg\" target=\"_blank\"><h6>Acrylic</h6><img class=\"alignleft size-full wp-image-590\" title=\"Acrylic Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Acrylic_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA unique and contemporary display option for your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/AcrylicPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FramedPortraits.jpg\" target=\"_blank\"><h6>Framed</h6><img class=\"alignleft size-full wp-image-590\" title=\"Framed Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Framed-Portraits_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nStunning, traditional and timeless framing finishes for your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FramedPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>","Fine Art Decor","","publish","open","open","","fine-art-decor","","","2012-10-10 06:55:39","2012-10-10 06:55:39","","10","http://www.livingimagephotography.com.au/?page_id=580","0","page","","0");
INSERT INTO wp_posts VALUES("581","1","2012-09-15 09:54:38","2012-09-15 09:54:38"," ","","","publish","open","open","","581","","","2012-10-11 01:12:14","2012-10-11 01:12:14","","0","http://www.livingimagephotography.com.au/?p=581","28","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("582","1","2012-09-15 09:52:45","2012-09-15 09:52:45","","Fine Art Decor","","inherit","open","open","","580-revision","","","2012-09-15 09:52:45","2012-09-15 09:52:45","","580","http://www.livingimagephotography.com.au/580-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("583","1","2012-09-15 09:58:23","2012-09-15 09:58:23","A beautifully designed hand-made canvas box including image-wrap for spine and front cover & one desktop mini-easel; forming a timeless memorable time capsule to be treasured through many lifetimes.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><h6>Collections Box</h6><img class=\"alignleft size-full wp-image-590\" title=\"Collections Box\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThis is a beautiful way to keep your treasured portraits, your collections box consists of your favourite 10 images from your portrait session, which are individually mounted behind an 11x14inch framers mount. This is a popular display option.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><strong>[take a closer look here]</strong></a>\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/MountedPortraits\" target=\"_blank\"><h6>Mounted Portraits</h6><img class=\"alignleft size-full wp-image-590\" title=\"Mounted Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/MountedPortraits_thumbs.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nam tempor auctor aliquet. Ut quis felis et mi pellentesque mollis id a felis. Nullam eleifend, tellus at malesuada vulputate, dolor ipsum feugiat nisl, sit amet rhoncus arcu erat id mauris.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><strong>[take a closer look here]</strong></a>\n","Fine Art Collections Box","","publish","open","open","","fine-art-collections-box","","","2012-10-10 06:55:37","2012-10-10 06:55:37","","10","http://www.livingimagephotography.com.au/?page_id=583","0","page","","0");
INSERT INTO wp_posts VALUES("584","1","2012-09-15 09:56:17","2012-09-15 09:56:17","","Fine Art Collections Box","","inherit","open","open","","583-revision","","","2012-09-15 09:56:17","2012-09-15 09:56:17","","583","http://www.livingimagephotography.com.au/583-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("589","1","2012-09-15 09:51:56","2012-09-15 09:51:56","","Fine Art Albums","","inherit","open","open","","578-revision-2","","","2012-09-15 09:51:56","2012-09-15 09:51:56","","578","http://www.livingimagephotography.com.au/578-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("591","1","2012-09-17 23:54:12","2012-09-17 23:54:12","Everlasting…\n\nJust the word itself is so beautiful & timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued & constructed by local album manufacturers. Making it forever unchangable, forever timeless & forever yours to cherish. ","Fine Art Albums","","inherit","open","open","","578-revision-3","","","2012-09-17 23:54:12","2012-09-17 23:54:12","","578","http://www.livingimagephotography.com.au/578-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("592","1","2012-09-18 01:36:25","2012-09-18 01:36:25","","Traditional Fine Art Album","","inherit","open","open","","traditional-fine-art-album","","","2012-09-18 01:36:25","2012-09-18 01:36:25","","0","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("593","1","2012-09-18 01:36:42","2012-09-18 01:36:42","","Designer Magazine Album","","inherit","open","open","","designer-magazine-album","","","2012-09-18 01:36:42","2012-09-18 01:36:42","","0","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("594","1","2012-09-18 01:21:06","2012-09-18 01:21:06","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.","Fine Art Albums","","inherit","open","open","","578-revision-4","","","2012-09-18 01:21:06","2012-09-18 01:21:06","","578","http://www.livingimagephotography.com.au/578-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("595","1","2012-09-18 01:37:50","2012-09-18 01:37:50","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album. <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\"><strong>take a look here</strong></a>","Fine Art Albums","","inherit","open","open","","578-revision-5","","","2012-09-18 01:37:50","2012-09-18 01:37:50","","578","http://www.livingimagephotography.com.au/578-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("596","1","2012-09-18 01:41:41","2012-09-18 01:41:41","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>","Fine Art Albums","","inherit","open","open","","578-revision-6","","","2012-09-18 01:41:41","2012-09-18 01:41:41","","578","http://www.livingimagephotography.com.au/578-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("597","1","2012-09-18 02:00:30","2012-09-18 02:00:30","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>","Fine Art Albums","","inherit","open","open","","578-revision-7","","","2012-09-18 02:00:30","2012-09-18 02:00:30","","578","http://www.livingimagephotography.com.au/578-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("598","1","2012-09-18 02:03:17","2012-09-18 02:03:17","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>","Fine Art Albums","","inherit","open","open","","578-revision-8","","","2012-09-18 02:03:17","2012-09-18 02:03:17","","578","http://www.livingimagephotography.com.au/578-revision-8/","0","revision","","0");
INSERT INTO wp_posts VALUES("599","1","2012-09-18 02:04:47","2012-09-18 02:04:47","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n<br />\n<br />\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>","Fine Art Albums","","inherit","open","open","","578-revision-9","","","2012-09-18 02:04:47","2012-09-18 02:04:47","","578","http://www.livingimagephotography.com.au/578-revision-9/","0","revision","","0");
INSERT INTO wp_posts VALUES("600","1","2012-09-18 02:07:21","2012-09-18 02:07:21","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n<div>\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n</div>\n<br />\n<div>\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n</div>","Fine Art Albums","","inherit","open","open","","578-revision-10","","","2012-09-18 02:07:21","2012-09-18 02:07:21","","578","http://www.livingimagephotography.com.au/578-revision-10/","0","revision","","0");
INSERT INTO wp_posts VALUES("601","1","2012-09-18 02:10:10","2012-09-18 02:10:10","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n<div>\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n</div>\np style=\"text-align: left;\"></p>\n<p style=\"text-align: left;\"></p>\n<p style=\"text-align: left;\"></p>\n<p style=\"text-align: left;\"></p>\n<p style=\"text-align: left;\"></p>\n<p style=\"text-align: left;\">\n<div>\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n</div>","Fine Art Albums","","inherit","open","open","","578-revision-11","","","2012-09-18 02:10:10","2012-09-18 02:10:10","","578","http://www.livingimagephotography.com.au/578-revision-11/","0","revision","","0");
INSERT INTO wp_posts VALUES("612","1","2012-09-15 09:54:57","2012-09-15 09:54:57","","Fine Art Decor","","inherit","open","open","","580-revision-2","","","2012-09-15 09:54:57","2012-09-15 09:54:57","","580","http://www.livingimagephotography.com.au/580-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("602","1","2012-09-18 02:15:40","2012-09-18 02:15:40","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n<div>\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n</div>\n<p style=\"text-align: left;\"></p>\n<p style=\"text-align: left;\"></p>\n<p style=\"text-align: left;\"></p>\n<p style=\"text-align: left;\"></p>\n<p style=\"text-align: left;\"></p>\n<p style=\"text-align: left;\">\n<div>\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n</div>","Fine Art Albums","","inherit","open","open","","578-revision-12","","","2012-09-18 02:15:40","2012-09-18 02:15:40","","578","http://www.livingimagephotography.com.au/578-revision-12/","0","revision","","0");
INSERT INTO wp_posts VALUES("604","1","2012-09-18 02:18:45","2012-09-18 02:18:45","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n<hr />\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Albums","","inherit","open","open","","578-revision-14","","","2012-09-18 02:18:45","2012-09-18 02:18:45","","578","http://www.livingimagephotography.com.au/578-revision-14/","0","revision","","0");
INSERT INTO wp_posts VALUES("603","1","2012-09-18 02:17:36","2012-09-18 02:17:36","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n<div>\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n</div>\n<p style=\"text-align: left;\"></p>\n<p style=\"text-align: left;\"></p>\n<p style=\"text-align: left;\"></p>\n<p style=\"text-align: left;\"></p>\n<p style=\"text-align: left;\"></p>\n<p style=\"text-align: left;\"></p>\n<div>\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n</div>","Fine Art Albums","","inherit","open","open","","578-revision-13","","","2012-09-18 02:17:36","2012-09-18 02:17:36","","578","http://www.livingimagephotography.com.au/578-revision-13/","0","revision","","0");
INSERT INTO wp_posts VALUES("649","1","2012-09-19 03:03:56","2012-09-19 03:03:56","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Albums","","inherit","open","open","","578-revision-19","","","2012-09-19 03:03:56","2012-09-19 03:03:56","","578","http://www.livingimagephotography.com.au/578-revision-19/","0","revision","","0");
INSERT INTO wp_posts VALUES("605","1","2012-09-18 02:20:38","2012-09-18 02:20:38","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Albums","","inherit","open","open","","578-revision-15","","","2012-09-18 02:20:38","2012-09-18 02:20:38","","578","http://www.livingimagephotography.com.au/578-revision-15/","0","revision","","0");
INSERT INTO wp_posts VALUES("606","1","2012-09-18 02:22:13","2012-09-18 02:22:13","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Albums","","inherit","open","open","","578-revision-16","","","2012-09-18 02:22:13","2012-09-18 02:22:13","","578","http://www.livingimagephotography.com.au/578-revision-16/","0","revision","","0");
INSERT INTO wp_posts VALUES("607","1","2012-09-18 02:23:24","2012-09-18 02:23:24","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Albums","","inherit","open","open","","578-revision-17","","","2012-09-18 02:23:24","2012-09-18 02:23:24","","578","http://www.livingimagephotography.com.au/578-revision-17/","0","revision","","0");
INSERT INTO wp_posts VALUES("608","1","2012-09-18 02:46:53","2012-09-18 02:46:53"," ","","","publish","open","open","","608","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","10","http://www.livingimagephotography.com.au/?p=608","8","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("609","1","2012-09-18 02:46:53","2012-09-18 02:46:53"," ","","","publish","open","open","","609","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","10","http://www.livingimagephotography.com.au/?p=609","7","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("610","1","2012-09-18 02:46:53","2012-09-18 02:46:53"," ","","","publish","open","open","","610","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","10","http://www.livingimagephotography.com.au/?p=610","6","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("611","1","2012-09-18 05:29:18","2012-09-18 05:29:18","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><h6>Visage</h6><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><h6>Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Amour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\n1 large portrait, flanked on one side by two more portraits. This collection suits bedrooms and living areas, and is perfect for a couple\'s portrait or family portrait. The Amour is available in 2 finishes: Acrylic and ArtMount.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><h6>Plus D\'Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Plus D\'Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Plus\'DAmour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThis beautiful collection includes 5 portraits, with one main feature, surrounded by 4 complimentary portraits. The Plus D\'Amour will liven a medium to large living room, and even works beutifully in a master bedroom. It\'s perfectly suited to family portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><h6>Trois</h6><img class=\"alignleft size-full wp-image-590\" title=\"Trois\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Trois_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThe Trois is a great addition to any room, with three vertical panels and size options for 10inch to 40inch prints it\'s designed to suit all spaces. The Trois is the ideal choice for family portraits, children\'s portraits or couples, it makes a real statement.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><h6>Enjoue</h6><img class=\"alignleft size-full wp-image-590\" title=\"Enjoue\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Enjoue_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nFor a wonderful alternative to our Trois portrait collection, the Enjoue provides you with 1 landscape, or horizontal portrait flanked by a vertical portrait on each side. The Enjoue collection will make an amazing impact in your rooms, suited to medium and larger sized spaces.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><h6>Unique</h6><img class=\"alignleft size-full wp-image-590\" title=\"Unique\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Unique_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA Unique collection is our option for single portraits of any size. A wonderful option to make a blod statement with one large portrait. From our 10inch portraits up to our large \"sofa sized\" 40inch portraits the choice is yours!<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<h1>Finishes</h1>\n\nWe have a range of alternative finishes for your portraits that are available on most of our collections. Our range of finishes are designed to suit any style of decor. \n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CanvasPortraits.jpg\" target=\"_blank\"><h6>Canvas</h6><img class=\"alignleft size-full wp-image-590\" title=\"Canvas Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Canvas_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nContemporary and timeless, our canvas finish is a brilliant way to display your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CanvasPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ArtMountPortraits.jpg\" target=\"_blank\"><h6>Art Mount</h6><img class=\"alignleft size-full wp-image-590\" title=\"Art Mount Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Art-Mount_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA great alternative finish for your portraits, perfect for a large collection of portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ArtMountPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/AcrylicPortraits.jpg\" target=\"_blank\"><h6>Acrylic</h6><img class=\"alignleft size-full wp-image-590\" title=\"Acrylic Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Acrylic_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA unique and contemporary display option for your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/AcrylicPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FramedPortraits.jpg\" target=\"_blank\"><h6>Framed</h6><img class=\"alignleft size-full wp-image-590\" title=\"Framed Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Framed-Portraits_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nStunning, traditional and timeless framing finishes for your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FramedPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>","Fine Art Decor","","inherit","open","open","","580-autosave","","","2012-09-18 05:29:18","2012-09-18 05:29:18","","580","http://www.livingimagephotography.com.au/580-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("613","1","2012-09-18 04:17:07","2012-09-18 04:17:07","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n","Fine Art Decor","","inherit","open","open","","580-revision-3","","","2012-09-18 04:17:07","2012-09-18 04:17:07","","580","http://www.livingimagephotography.com.au/580-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("614","1","2012-09-18 04:19:00","2012-09-18 04:19:00","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"150\" height=\"150\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n","Fine Art Decor","","inherit","open","open","","580-revision-4","","","2012-09-18 04:19:00","2012-09-18 04:19:00","","580","http://www.livingimagephotography.com.au/580-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("615","1","2012-09-18 04:21:15","2012-09-18 04:21:15","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n","Fine Art Decor","","inherit","open","open","","580-revision-5","","","2012-09-18 04:21:15","2012-09-18 04:21:15","","580","http://www.livingimagephotography.com.au/580-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("616","1","2012-09-18 04:22:59","2012-09-18 04:22:59","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<h6>Traditional Fine Art Albums</h6><a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n","Fine Art Decor","","inherit","open","open","","580-revision-6","","","2012-09-18 04:22:59","2012-09-18 04:22:59","","580","http://www.livingimagephotography.com.au/580-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("617","1","2012-09-18 04:24:49","2012-09-18 04:24:49","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\">h6>Traditional Fine Art Albums</h6><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n","Fine Art Decor","","inherit","open","open","","580-revision-7","","","2012-09-18 04:24:49","2012-09-18 04:24:49","","580","http://www.livingimagephotography.com.au/580-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("618","1","2012-09-18 04:26:24","2012-09-18 04:26:24","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><h6>Traditional Fine Art Albums</h6><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n","Fine Art Decor","","inherit","open","open","","580-revision-8","","","2012-09-18 04:26:24","2012-09-18 04:26:24","","580","http://www.livingimagephotography.com.au/580-revision-8/","0","revision","","0");
INSERT INTO wp_posts VALUES("619","1","2012-09-18 04:32:30","2012-09-18 04:32:30","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><h6>Visage</h6><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><h6>Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Amour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\n1 large portrait, flanked on one side by two more portraits. This collection suits bedrooms and living areas, and is perfect for a couple\'s portrait or family portrait. The Amour is available in 2 finishes: Acrylic and ArtMount.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Decor","","inherit","open","open","","580-revision-9","","","2012-09-18 04:32:30","2012-09-18 04:32:30","","580","http://www.livingimagephotography.com.au/580-revision-9/","0","revision","","0");
INSERT INTO wp_posts VALUES("620","1","2012-09-18 04:34:34","2012-09-18 04:34:34","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><h6>Visage</h6><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><h6>Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Amour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\n1 large portrait, flanked on one side by two more portraits. This collection suits bedrooms and living areas, and is perfect for a couple\'s portrait or family portrait. The Amour is available in 2 finishes: Acrylic and ArtMount.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Decor","","inherit","open","open","","580-revision-10","","","2012-09-18 04:34:34","2012-09-18 04:34:34","","580","http://www.livingimagephotography.com.au/580-revision-10/","0","revision","","0");
INSERT INTO wp_posts VALUES("621","1","2012-09-18 04:52:06","2012-09-18 04:52:06","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><h6>Visage</h6><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><h6>Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Amour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\n1 large portrait, flanked on one side by two more portraits. This collection suits bedrooms and living areas, and is perfect for a couple\'s portrait or family portrait. The Amour is available in 2 finishes: Acrylic and ArtMount.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><h6>Plus D\'Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Plus D\'Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Plus\'DAmour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThis beautiful collection includes 5 portraits, with one main feature, surrounded by 4 complimentary portraits. The Plus D\'Amour will liven a medium to large living room, and even works beutifully in a master bedroom. It\'s perfectly suited to family portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><h6>Trois</h6><img class=\"alignleft size-full wp-image-590\" title=\"Trois\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Trois_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThe Trois is a great addition to any room, with three vertical panels and size options for 10inch to 40inch prints it\'s designed to suit all spaces. The Trois is the ideal choice for family portraits, children\'s portraits or couples, it makes a real statement.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><h6>Enjoue</h6><img class=\"alignleft size-full wp-image-590\" title=\"Enjoue\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Enjoue_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nFor a wonderful alternative to our Trois portrait collection, the Enjoue provides you with 1 landscape, or horizontal portrait flanked by a vertical portrait on each side. The Enjoue collection will make an amazing impact in your rooms, suited to medium and larger sized spaces.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><h6>Unique</h6><img class=\"alignleft size-full wp-image-590\" title=\"Unique\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Unique_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA Unique collection is our option for single portraits of any size. A wonderful option to make a blod statement with one large portrait. From our 10inch portraits up to our large \"sofa sized\" 40inch portraits the choice is yours!<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>","Fine Art Decor","","inherit","open","open","","580-revision-11","","","2012-09-18 04:52:06","2012-09-18 04:52:06","","580","http://www.livingimagephotography.com.au/580-revision-11/","0","revision","","0");
INSERT INTO wp_posts VALUES("622","1","2012-09-18 05:15:11","2012-09-18 05:15:11","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><h6>Visage</h6><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><h6>Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Amour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\n1 large portrait, flanked on one side by two more portraits. This collection suits bedrooms and living areas, and is perfect for a couple\'s portrait or family portrait. The Amour is available in 2 finishes: Acrylic and ArtMount.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><h6>Plus D\'Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Plus D\'Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Plus\'DAmour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThis beautiful collection includes 5 portraits, with one main feature, surrounded by 4 complimentary portraits. The Plus D\'Amour will liven a medium to large living room, and even works beutifully in a master bedroom. It\'s perfectly suited to family portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><h6>Trois</h6><img class=\"alignleft size-full wp-image-590\" title=\"Trois\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Trois_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThe Trois is a great addition to any room, with three vertical panels and size options for 10inch to 40inch prints it\'s designed to suit all spaces. The Trois is the ideal choice for family portraits, children\'s portraits or couples, it makes a real statement.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><h6>Enjoue</h6><img class=\"alignleft size-full wp-image-590\" title=\"Enjoue\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Enjoue_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nFor a wonderful alternative to our Trois portrait collection, the Enjoue provides you with 1 landscape, or horizontal portrait flanked by a vertical portrait on each side. The Enjoue collection will make an amazing impact in your rooms, suited to medium and larger sized spaces.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><h6>Unique</h6><img class=\"alignleft size-full wp-image-590\" title=\"Unique\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Unique_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA Unique collection is our option for single portraits of any size. A wonderful option to make a blod statement with one large portrait. From our 10inch portraits up to our large \"sofa sized\" 40inch portraits the choice is yours!<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<h1>Finishes</h1>\n\nWe have a range of alternative finishes for your portraits that are available on most of our collections. Our range of finishes are designed to suit any style of decor. \n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CanvasPortraits.jpg\" target=\"_blank\"><h6>Canvas</h6><img class=\"alignleft size-full wp-image-590\" title=\"Canvas Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Canvas_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nContemporary and timeless, our canvas finish is a brilliant way to display your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CanvasPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ArtMountPortraits.jpg\" target=\"_blank\"><h6>Art Mount</h6><img class=\"alignleft size-full wp-image-590\" title=\"Art Mount Portraits src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Art-Mount_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA great alternative finish for your portraits, perfect for a large collection of portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ArtMountPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/AcrylicPortraits.jpg\" target=\"_blank\"><h6>Acrylic</h6><img class=\"alignleft size-full wp-image-590\" title=\"Acrylic Portraits src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Acrylic_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA unique and contemporary display option for your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/AcrylicPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FramedPortraits.jpg\" target=\"_blank\"><h6>Acrylic</h6><img class=\"alignleft size-full wp-image-590\" title=\"Acrylic Portraits src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Framed-Portraits_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nStunning, traditional and timeless framing finishes for your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FramedPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>","Fine Art Decor","","inherit","open","open","","580-revision-12","","","2012-09-18 05:15:11","2012-09-18 05:15:11","","580","http://www.livingimagephotography.com.au/580-revision-12/","0","revision","","0");
INSERT INTO wp_posts VALUES("623","1","2012-09-18 05:25:52","2012-09-18 05:25:52","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><h6>Visage</h6><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><h6>Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Amour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\n1 large portrait, flanked on one side by two more portraits. This collection suits bedrooms and living areas, and is perfect for a couple\'s portrait or family portrait. The Amour is available in 2 finishes: Acrylic and ArtMount.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><h6>Plus D\'Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Plus D\'Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Plus\'DAmour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThis beautiful collection includes 5 portraits, with one main feature, surrounded by 4 complimentary portraits. The Plus D\'Amour will liven a medium to large living room, and even works beutifully in a master bedroom. It\'s perfectly suited to family portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><h6>Trois</h6><img class=\"alignleft size-full wp-image-590\" title=\"Trois\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Trois_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThe Trois is a great addition to any room, with three vertical panels and size options for 10inch to 40inch prints it\'s designed to suit all spaces. The Trois is the ideal choice for family portraits, children\'s portraits or couples, it makes a real statement.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><h6>Enjoue</h6><img class=\"alignleft size-full wp-image-590\" title=\"Enjoue\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Enjoue_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nFor a wonderful alternative to our Trois portrait collection, the Enjoue provides you with 1 landscape, or horizontal portrait flanked by a vertical portrait on each side. The Enjoue collection will make an amazing impact in your rooms, suited to medium and larger sized spaces.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><h6>Unique</h6><img class=\"alignleft size-full wp-image-590\" title=\"Unique\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Unique_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA Unique collection is our option for single portraits of any size. A wonderful option to make a blod statement with one large portrait. From our 10inch portraits up to our large \"sofa sized\" 40inch portraits the choice is yours!<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<h1>Finishes</h1>\n\nWe have a range of alternative finishes for your portraits that are available on most of our collections. Our range of finishes are designed to suit any style of decor. \n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CanvasPortraits.jpg\" target=\"_blank\"><h6>Canvas</h6><img class=\"alignleft size-full wp-image-590\" title=\"Canvas Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Canvas_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nContemporary and timeless, our canvas finish is a brilliant way to display your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CanvasPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ArtMountPortraits.jpg\" target=\"_blank\"><h6>Art Mount</h6><img class=\"alignleft size-full wp-image-590\" title=\"Art Mount Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Art-Mount_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA great alternative finish for your portraits, perfect for a large collection of portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ArtMountPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/AcrylicPortraits.jpg\" target=\"_blank\"><h6>Acrylic</h6><img class=\"alignleft size-full wp-image-590\" title=\"Acrylic Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Acrylic_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA unique and contemporary display option for your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/AcrylicPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FramedPortraits.jpg\" target=\"_blank\"><h6>Framed</h6><img class=\"alignleft size-full wp-image-590\" title=\"Framed Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Framed-Portraits_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nStunning, traditional and timeless framing finishes for your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FramedPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>","Fine Art Decor","","inherit","open","open","","580-revision-13","","","2012-09-18 05:25:52","2012-09-18 05:25:52","","580","http://www.livingimagephotography.com.au/580-revision-13/","0","revision","","0");
INSERT INTO wp_posts VALUES("825","1","2012-09-22 01:08:52","2012-09-22 01:08:52","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><h6>Visage</h6><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><h6>Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Amour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\n1 large portrait, flanked on one side by two more portraits. This collection suits bedrooms and living areas, and is perfect for a couple\'s portrait or family portrait. The Amour is available in 2 finishes: Acrylic and ArtMount.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><h6>Plus D\'Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Plus D\'Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Plus\'DAmour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\nThis beautiful collection includes 5 portraits, with one main feature, surrounded by 4 complimentary portraits. The Plus D\'Amour will liven a medium to large living room, and even works beutifully in a master bedroom. It\'s perfectly suited to family portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><h6>Trois</h6><img class=\"alignleft size-full wp-image-590\" title=\"Trois\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Trois_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\nThe Trois is a great addition to any room, with three vertical panels and size options for 10inch to 40inch prints it\'s designed to suit all spaces. The Trois is the ideal choice for family portraits, children\'s portraits or couples, it makes a real statement.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><h6>Enjoue</h6><img class=\"alignleft size-full wp-image-590\" title=\"Enjoue\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Enjoue_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nFor a wonderful alternative to our Trois portrait collection, the Enjoue provides you with 1 landscape, or horizontal portrait flanked by a vertical portrait on each side. The Enjoue collection will make an amazing impact in your rooms, suited to medium and larger sized spaces.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><h6>Unique</h6><img class=\"alignleft size-full wp-image-590\" title=\"Unique\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Unique_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA Unique collection is our option for single portraits of any size. A wonderful option to make a blod statement with one large portrait. From our 10inch portraits up to our large \"sofa sized\" 40inch portraits the choice is yours!<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<h1>Finishes</h1>\n\nWe have a range of alternative finishes for your portraits that are available on most of our collections. Our range of finishes are designed to suit any style of decor. \n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CanvasPortraits.jpg\" target=\"_blank\"><h6>Canvas</h6><img class=\"alignleft size-full wp-image-590\" title=\"Canvas Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Canvas_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nContemporary and timeless, our canvas finish is a brilliant way to display your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CanvasPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ArtMountPortraits.jpg\" target=\"_blank\"><h6>Art Mount</h6><img class=\"alignleft size-full wp-image-590\" title=\"Art Mount Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Art-Mount_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA great alternative finish for your portraits, perfect for a large collection of portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ArtMountPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/AcrylicPortraits.jpg\" target=\"_blank\"><h6>Acrylic</h6><img class=\"alignleft size-full wp-image-590\" title=\"Acrylic Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Acrylic_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA unique and contemporary display option for your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/AcrylicPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FramedPortraits.jpg\" target=\"_blank\"><h6>Framed</h6><img class=\"alignleft size-full wp-image-590\" title=\"Framed Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Framed-Portraits_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nStunning, traditional and timeless framing finishes for your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FramedPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>","Fine Art Decor","","inherit","open","open","","580-revision-16","","","2012-09-22 01:08:52","2012-09-22 01:08:52","","580","http://www.livingimagephotography.com.au/580-revision-16/","0","revision","","0");
INSERT INTO wp_posts VALUES("624","1","2012-09-18 06:54:19","2012-09-18 06:54:19","A beautifully designed hand-made canvas box including image-wrap for spine and front cover & one desktop mini-easel; forming a timeless memorable time capsule to be treasured through many lifetimes.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><h6>Collections Box</h6><img class=\"alignleft size-full wp-image-590\" title=\"Collections Box\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThis is a beautiful way to keep your treasured portraits, your collections box consists of your favourite 10 images from your portrait session, which are individually mounted behind an 11x14inch framers mount. This is a popular display option.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><strong>[take a closer look here]</strong></a>\n\n&nb\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/MountedPortraits\" target=\"_blank\"><h6>Mounted Portraits</h6><img class=\"alignleft size-full wp-image-590\" title=\"Mounted Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/MountedPortraits_thumbs.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nam tempor auctor aliquet. Ut quis felis et mi pellentesque mollis id a felis. Nullam eleifend, tellus at malesuada vulputate, dolor ipsum feugiat nisl, sit amet rhoncus arcu erat id mauris.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><strong>[take a closer look here]</strong></a>\n","Fine Art Collections Box","","inherit","open","open","","583-autosave","","","2012-09-18 06:54:19","2012-09-18 06:54:19","","583","http://www.livingimagephotography.com.au/583-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("625","1","2012-09-15 09:58:23","2012-09-15 09:58:23","","Fine Art Collections Box","","inherit","open","open","","583-revision-2","","","2012-09-15 09:58:23","2012-09-15 09:58:23","","583","http://www.livingimagephotography.com.au/583-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("626","1","2012-09-18 06:51:14","2012-09-18 06:51:14","A beautifully designed hand-made canvas box including image-wrap for spine and front cover & one desktop mini-easel; forming a timeless memorable time capsule to be treasured through many lifetimes.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><h6>Collections Box<h6><img class=\"alignleft size-full wp-image-590\" title=\"Collections Box\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThis is a beautiful way to keep your treasured portraits, your collections box consists of your favourite 10 images from your portrait session, which are individually mounted behind an 11x14inch framers mount. This is a popular display option.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><strong>[take a closer look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/MountedPortraits\" target=\"_blank\"><h6>Mounted Portraits<h6><img class=\"alignleft size-full wp-image-590\" title=\"Mounted Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/MountedPortraits_thumbs.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nam tempor auctor aliquet. Ut quis felis et mi pellentesque mollis id a felis. Nullam eleifend, tellus at malesuada vulputate, dolor ipsum feugiat nisl, sit amet rhoncus arcu erat id mauris.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><strong>[take a closer look here]</strong></a>\n","Fine Art Collections Box","","inherit","open","open","","583-revision-3","","","2012-09-18 06:51:14","2012-09-18 06:51:14","","583","http://www.livingimagephotography.com.au/583-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("627","1","2012-09-18 06:52:55","2012-09-18 06:52:55","A beautifully designed hand-made canvas box including image-wrap for spine and front cover & one desktop mini-easel; forming a timeless memorable time capsule to be treasured through many lifetimes.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><h6>Collections Box</h6><img class=\"alignleft size-full wp-image-590\" title=\"Collections Box\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThis is a beautiful way to keep your treasured portraits, your collections box consists of your favourite 10 images from your portrait session, which are individually mounted behind an 11x14inch framers mount. This is a popular display option.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><strong>[take a closer look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/MountedPortraits\" target=\"_blank\"><h6>Mounted Portraits</h6><img class=\"alignleft size-full wp-image-590\" title=\"Mounted Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/MountedPortraits_thumbs.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nam tempor auctor aliquet. Ut quis felis et mi pellentesque mollis id a felis. Nullam eleifend, tellus at malesuada vulputate, dolor ipsum feugiat nisl, sit amet rhoncus arcu erat id mauris.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><strong>[take a closer look here]</strong></a>\n","Fine Art Collections Box","","inherit","open","open","","583-revision-4","","","2012-09-18 06:52:55","2012-09-18 06:52:55","","583","http://www.livingimagephotography.com.au/583-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("629","1","2012-09-18 08:18:55","2012-09-18 08:18:55","<strong>A portrait experience from us is the perfect gift for a friend or a loved one.</strong> We have beautifully presented gift certificates available, that can also be personalised with a message from you. Please call the studio to organise your gift certificate over the phone. We will express post it to you so you have it as soon as possible, or you are welcome to pop into the studio and collect it in person.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><h6>Gift Certificates</h6><img class=\"alignleft size-full wp-image-590\" title=\"Gift Certificates\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate_thumbs.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nOur gift certificates are beautifully printed on heavy card stock, creased and sealed with a bow at the back. The gift certificates are personalised with your name, the recipients and a message if you wish. Certificates are available in any amount you wish.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>","Gifts","","inherit","open","open","","587-revision-2","","","2012-09-18 08:18:55","2012-09-18 08:18:55","","587","http://www.livingimagephotography.com.au/587-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("628","1","2012-09-18 08:16:47","2012-09-18 08:16:47","<strong>A portrait experience from us is the perfect gift for a friend or a loved one.</strong> We have beautifully presented gift certificates available, that can also be personalised with a message from you. Please call the studio to organise your gift certificate over the phone. We will express post it to you so you have it as soon as possible, or you are welcome to pop into the studio and collect it in person.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><h6>Gift Certificates</h6><img class=\"alignleft size-full wp-image-590\" title=\"Gift Certificates\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate_thumbs.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nOur gift certificates are beautifully printed on heavy card stock, creased and sealed with a bow at the back. The gift certificates are personalised with your name, the recipients and a message if you wish. Certificates are available in any amount you wish.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>","Gifts","","inherit","open","open","","587-revision","","","2012-09-18 08:16:47","2012-09-18 08:16:47","","587","http://www.livingimagephotography.com.au/587-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("630","1","2012-09-18 08:21:07","2012-09-18 08:21:07"," ","","","publish","open","open","","630","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","10","http://www.livingimagephotography.com.au/?p=630","9","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("631","1","2012-09-18 08:20:31","2012-09-18 08:20:31","<strong>A portrait experience from us is the perfect gift for a friend or a loved one.</strong> We have beautifully presented gift certificates available, that can also be personalised with a message from you. Please call the studio to organise your gift certificate over the phone. We will express post it to you so you have it as soon as possible, or you are welcome to pop into the studio and collect it in person.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><h6>Gift Certificates</h6><img class=\"alignleft size-full wp-image-590\" title=\"Gift Certificates\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate_thumbs.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nOur gift certificates are beautifully printed on heavy card stock, creased and sealed with a bow at the back. The gift certificates are personalised with your name, the recipients and a message if you wish. Certificates are available in any amount you wish.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>","Gifts","","inherit","open","open","","587-revision-3","","","2012-09-18 08:20:31","2012-09-18 08:20:31","","587","http://www.livingimagephotography.com.au/587-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("632","1","2012-09-15 06:21:37","2012-09-15 06:21:37","Depending on the type of look and feel you are looking for with your portraits, we will determine what clothing options will work best for you. At the time of your booking, we will discuss with you, the best clothing options for you and your family.  However, here are a few great tips to get you started….\n\n<em>Hair and Make-Up</em>\n\nYour hair and make-up should also be worn as you would normally wear it. However, do take a moment to have a look at everyone’s hair; is anyone due for a hair cut or colour? If so, make sure you book them in before your session. We want to capture images of the real you, so no need to go over the top with make-up if you don’t normally wear it.  We retouch all of the work that you purchase, so if there is something that you’re not entirely happy with in your complexion then we can fix it.\n\n<em>What to wear</em>\n\nIt is important that you feel comfortable in whatever it is that you decide to wear, because if you feel good you will look good.\n\nAs a rule of thumb, smart casual is the best way to go. Guys look great in collared shirts, long flowing dresses look stunning on the girls and little kids look great in bright colours. Don’t be afraid to mix it up a bit.\n\nKeep in mind what everybody is wearing to maintain harmony with the overall look, but more importantly steer away from heavy stripes, spots or large logos. Try not to have an exact match of clothing for everyone unless you particularly wish to theme the images.  Instead, use similar colours in the clothing for everyone - two to three co-ordinated colours work best.\n\nConsider your finger nails and toe nails (if you’re wearing open toed footwear), prepare them in line with your own personal style. If you wear glasses, be sure to bring a pair with clear lenses.\n\nDon’t be worried if you don’t have a wardrobe that rivals the celebrities, sometimes the simplest of clothing can be the most effective. But do make sure all your clothes are clean and pressed. It’s important for everyone to wear flattering clothing that fits correctly.\n\nFeel free to bring a couple of out fits to your session; your photographer will help you choose the most appropriate one. It also gives you the opportunity to mix it up a little bit, you can change clothing half way through your session to add some additional variety to your shots.\n\n<em>Getting the kids ready</em>\n\nLittle ones can sometimes be the trickiest to prepare for a photo session. They quickly pick up on stress and may become nervous, so always keep it fun and don’t rehearse the sitting.\n\nWhen booking your session keep in mind your children’s sleep times. No one likes to smile and have fun when they are tired and ready for a nap.\n\nMake sure you arrive at your session early to give your child time to get to know your photographer and used to their new surroundings. During the session if you want to help with making them smile, it works really well when parents stand behind the photographer so young ones look in the direction of the camera when you’re calling for their attention.\n\nBring along their favourite toy, this can add an extra level of sentiment to your photographs.","Prepairing for your session","","inherit","open","open","","545-revision-3","","","2012-09-15 06:21:37","2012-09-15 06:21:37","","545","http://www.livingimagephotography.com.au/545-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("633","1","2012-09-15 07:11:58","2012-09-15 07:11:58","An important part of the process is the cost. We feel it’s important that you receive the most value for your investment, and whatever you decide to purchase fits within your budget. We encourage you to feel comfortable with your order.\n\nAll of the work that we produce for you is finished artwork, ready to hang or display, and comes with a life time guarantee. With this in mind here is a guide to our pricing.\n\nOur portrait fee is $150, which includes;\n<ul>\n	<li>Your pre portrait consultation in our studio or on the phone (allow 30mins),</li>\n	<li>Your creative portrait session, in our studio (allow an hour and a half),</li>\n	<li>and your ordering session, in our studio (allow up to 2 hours)</li>\n</ul>\nWe aim to capture anywhere between 40 to 100 <em><span style=\"text-decoration: underline;\">different</span></em> images during your portrait session. We will take you through the whole collection during your ordering session for you to select your absolute favourites.\n\nOur 10 inch matted portraits start from as little as $195. We have a whole range display options to suit all price points and budgets. Our display options include;\n<ul>\n	<li><a href=\"#\">Wall Portraits &amp; Collections</a></li>\n	<li><a href=\"#\">Hand Bound Albums &amp; Story Books</a></li>\n	<li><a href=\"#\">Desktop Portraits &amp; Matted Prints</a></li>\n	<li><a href=\"#\">Gift Certificates for your friends and loved ones</a></li>\n</ul>\n<span style=\"color: #ff0000;\">Take this opportunity to <a href=\"#\">book your session now</a>, and start this exciting journey.</span>","Pricing","","inherit","open","open","","15-revision-4","","","2012-09-15 07:11:58","2012-09-15 07:11:58","","15","http://www.livingimagephotography.com.au/15-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("635","1","2012-10-11 01:06:57","2012-10-11 01:06:57","<h3>Sydney</h3>\nSuite C1, Ground Floor, 210 Willoughby Road, Crows Nest, NSW, Australia 2065\nPhone: <strong>(02) 9967 3114</strong>\n<br />\n<strong>We are thrilled that you have chosen us to capture your portraits. We\'re sure you will enjoy your experience with us!</strong>\n\nPlease enter your details in the booking request form below, and we will be on contact with you very shortly.\n\n[gravityform id=1 title=false description=false]\n\n<em><strong>Please note, we will do our best to accommodate your preferred date and time for your session, please be aware that we may be unavailable for your preference and will discuss suitable alternatives with you if need be.</strong></em>","Bookings","","inherit","open","open","","20-autosave","","","2012-10-11 01:06:57","2012-10-11 01:06:57","","20","http://www.livingimagephotography.com.au/20-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("636","1","2012-09-08 04:53:45","2012-09-08 04:53:45","","Bookings","","inherit","open","open","","20-revision-2","","","2012-09-08 04:53:45","2012-09-08 04:53:45","","20","http://www.livingimagephotography.com.au/20-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("637","1","2012-09-19 00:21:07","2012-09-19 00:21:07","<h3>Sydney</h3>\nGround Floor, Suite C1, 210 Willoughby Road, Crows Nest, NSW, 2065\nPhone: <strong>(02) 9967 3114</strong>\n<br />\n<strong>We are thrilled that you have chosen us to capture your portraits. We\'re sure you will enjoy your experience with us!</strong>\n\nPlease enter your details in the booking request form below, and we will be on contact with you very shortly.\n\n[gravityform id=1 title=false description=false]\n\n<em><strong>Please note, we will do our best to accommodate your preferred date and time for your session, please be aware that we may be unavailable for your preference and will discuss suitable alternatives with you if need be.</strong></em>","Bookings","","inherit","open","open","","20-revision-3","","","2012-09-19 00:21:07","2012-09-19 00:21:07","","20","http://www.livingimagephotography.com.au/20-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("638","1","2012-09-08 04:24:28","2012-09-08 04:24:28","Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!","Hello world!","","inherit","open","open","","1-revision","","","2012-09-08 04:24:28","2012-09-08 04:24:28","","1","http://www.livingimagephotography.com.au/1-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("888","1","2012-09-22 01:45:06","2012-09-22 01:45:06","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\">[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met</p>\n<br />\n<p style=\"text-align: right;\"><strong>-Michelle Matthewman </strong></p>[/quote]\n<p style=\"text-align: left;\">[quote]The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\n<br />\n<p style=\"text-align: right;\"><strong>- James &amp; Kristen Green </strong></p>[/quote]\n[quote]Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n<p style=\"text-align: right\";><strong>Cheers,\n</strong><strong>Jen Drysdale</strong></p>[/quote]\n\n[quote]Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinely had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thank you Simon.\n<p style=\"text-align: right\";><strong>-Maureen Wills </strong></p>[/quote]\n\n[quote]Dear Simon and Amy,\n\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\n\n\n<p style=\"text-align:right\";><strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></p>[/quote]\n\n[quote]I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\n<p style=\"text-align: right\";><strong>-Carly Hansen</strong></p>[/quote]\n\n[quote]Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\n<strong>See it here</strong>&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\"><h6>The Strands Of Me</h6></a> </em>[/quote]\n\n[quote]Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<p style=\"text-align: right\";><strong>Cheers\nJess and Ben</strong>[/quote]\n\n[quote]DAVID IS AWESOME!!!\nWe had a great time, it was relaxed, comfortable and the location of the photo shoot was wonderful! David was great with the kids, he has a wonderful personality which allowed us to feel welcomed and be ourselves! Emily and David you are both wonderful professionals who made us feel more like friends than clients…</em></em>\n\nGood luck for the future\n\n<p style=\"text-align: right\";><strong>Kind Regards,\nKatine, Evan, Ecrini, Nickolas and Stavros Maounis</strong></p>\n\n\nPS – Emily was awesome too xx[/quote]\n\n[quote]What a fantastic experience!\n\n<em><em>On our way driving to our ‘photo shoot’ we were starting to think ‘What are we doing?’ thinking we would be too anxious and self conscious. All that went out of the window within minutes of meeting David. We had so much fun and it showed in the photos – which are so BEAUTIFUL! We have wonderful memories of the day too (we’ll never forget the ‘Drunken Scotsman dance’!). Thank-you so much Emily for your enthusiasm and patience… ‘Emily show us that one again, and that one, no that one – and can you show us them all again??’ Such a wonderful time and lovely photos to keep forever!\n\n<p style=\"text-align: right\";><strong>See you next time,\nNatalie and Ewen Gibb</strong></p>[/quote]\n\n[quote]Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderful photos had been captured of our ugly mugs!\n\n<p style=\"text-align: right\";><strong>Thanks again,\nAnne and Owen Kruger</strong></p>[/quote]\n\n\n[quote]We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\nIt was a great day – one I would recommend to anyone\n\n<p style=\"text-align: right\";><strong>Thanks so much,\nSimone Faulkner</strong></p>[/quote]\n\n\n\n[quote]Thanks guys for a great experience\n\nIt was the first family shoot for the grandparents, but David was very patient with everyone and kept everyone nice and relaxed. The pictures turned out amazing with lots of creative shoots. Thanks again for the opportunity to capture our little bubs and the free gift is lovely\n\n<p style=\"text-align: right\";><strong>Elson &amp; Karen Goh</p></strong>[/quote]\n\n\n[quote]David and Emily.\n\nOur photos are just amazing. We will never forget the great work that you guys have done. I will be recommending you to everyone in my community. It was great fun working with you guys. We wish you great luck for an everlasting success.\n\n<p style=\"text-align: right\";><strong>Shekhar, Vaishali and Shanti</strong></p>[/quote]\n\n[quote]Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!\n\n<p style=\"text-align: right\";><strong>The Trusso Family</strong></p>[/quote]\n\n\n\n[quote]Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! \n\n<p style=\"text-align:right\";><strong>Herman and Sol</strong></p>[/quote]\n\n[quote]Great photos! Great Service! Very professional people, very happy with everything! \n\n<p style=\"text-align: right\";><strong>Thanks\nHenneker Family</strong></p>[/quote]\n\n[quote]Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!\n\n<p style=\"text-align:right\";><strong>Mohamed Family</strong></p>[/quote]\n\n[quote]Hey guys!\n\nThank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.\n\n<strong><p style=\"text-align: right\";>Cheers,\nRobert Hart</strong></p>[/quote]\n\n[quote]Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.\n\n<p style=\"text-align: right\";><strong>Lyn and Rocco</p></strong>[/quote]\n\n[quote]A very pleasant experience. Living Image was very professional and accommodating.\n\n<p style=\"text-align:right\";><strong>Marty</p></strong>[/quote]\n\n[quote]We had a good time, very professional and friendly people.\n\n<strong><p style=\"text-align:right\";>Thank-you.\nJorge and Aracely</strong></p>[/quote]\n\n[quote]Excellent posing and lighting effects. Friendly and most accommodations. Great presentation in an environment that was relaxing and professional.\n\nVery impressed with finished product and  good manners from Emily and David.\n\n<p style=\"text-align:right\";><strong>Most Appreciated,\nJill and Paul Bronson</strong></p>[/quote]\n\n[quote]Very Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n\n<p style=\"text-align:right\";><strong>Edward Rynne</strong>[/quote]\n\n[quote]Thanks, great photos. Pleasant experience.\n\n<p style=\"text-align: right\";><strong>John and Antonella Calabrese</p></strong>[/quote]\n\n[quote]We’re very happy with the photos.\n\n<strong><p style=\"text-align\";>good job,\nHenry and Patricia Adie-Cooper</strong></p>[/quote]\n\n[quote]Thanks! Brilliant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n\n<p style=\"text-align: right\";><strong>Elaine and Noel Walters</strong></p>[/quote]\n\n[quote]We had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\n<strong><p style=\"text-align: right\";>Thanks,\nDerek Wall</strong></p>[/quote]\n\n[quote]A very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. \n\n<strong><p style=\"text-align: right\";>Thank-you,\nOtto and Jeannie Ashboth</strong></p>[/quote]\n\n[quote]Thanks for the fantastic photos and for being so patient handling all the young children.\n\n<p style=\"text-align: right\";><strong>Don</strong></p>[/quote]\n\n[quote]The photo session was excellent, Point Walter is so beautiful and David took time to choose the best place for us. Everyone was very helpful. Beautiful photo. Thank-you very much.\n\n<p style=\"text-align: right\";><strong>Rose</strong></p>[/quote]\n\n[quote]Both David and Emily have been great in the service provided as well as their friendliness and being very helpful in every possible way.\n\n<p style=\"text-align: right\";><strong>Ian Ong</strong></p>[/quote]\n\n[quote]Working with teenagers can be a difficult thing, especially when they are not willing participants in the task at hand. But David did a splendid job and our photo is testimony to that. Thank-you for the opportunity to participate.\n\n<p style=\"text-align: right\";><strong>Helen Westcott</strong></p>[/quote]\n\n[quote]Lovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\n<strong><p style=\"text-align: right\";>Many thanks,\nBeryl Price</p></strong>[/quote]\n\n[quote]Very, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\n<strong><p style=\"text-align:right\";>Thanks,\nDionne Smith and family</p></strong>[/quote]\n\n[quote]Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\n<strong><p style=\"text-align: right\";>Thank you,\nJohn Garbin and family </p></strong>[/quote]\n\n[quote]The photos are gorgeous, we had a lot of fun at the river and David made Kyra feel completely at ease.\n\n<strong><p style=\"text-align: right\";>Thank-you,\nChristine, Mal and Kyra</p></strong>[/quote]\n\n[quote]Thank you David and Emily\n\nOur family enjoyed the photo shoot, the professional approach to the job, but the friendly and relaxing time we spent with you. The photos are superb and we will enjoy them till we can’t see any more!\n\nVery best wishes to you both…. \n\n<strong><p style=\"text-align: right\";>Bev Flockart</p></strong>[/quote]\n\n[quote]Thanks so much Emily and David for making me feel so comfortable during the shoot. We all enjoyed ourselves thoroughly. So THANKS!\n\n<strong><p style=\"text-align: right\";>Pamela</p></strong>[/quote]","Testimonials","","inherit","open","open","","18-revision-13","","","2012-09-22 01:45:06","2012-09-22 01:45:06","","18","http://www.livingimagephotography.com.au/18-revision-13/","0","revision","","0");
INSERT INTO wp_posts VALUES("640","1","2012-09-19 00:47:33","2012-09-19 00:47:33","<br />\n[quote]This weeks Pic of the Week goes to the beautiful mother, Sofia with her 7 month old daughter Isabella. Sofia &amp; Isabella came to our Northbridge Studio to have their Portrait Photography taken earlier this week. They blew us away with an ease behind the camera and a gentle nature. Photographer Simon Carroll captured this magnificent moment between mother and daughter... there is honestly not a more perfect embrace.[/quote]","Pic of the week!","","publish","open","open","","pic-of-the-week","","","2012-09-28 23:09:52","2012-09-28 23:09:52","","0","http://www.livingimagephotography.com.au/?p=640","0","post","","0");
INSERT INTO wp_posts VALUES("641","1","2012-09-19 00:43:53","2012-09-19 00:43:53","This weeks Pic of the Week goes to the beautiful mother, Sofia with her 7 month old daughter Isabella. Sofia &amp; Isabella came to our Northbridge Studio to have their Portrait Photography taken earlier this week. They blew us away with an ease behind the camera and a gentle nature. Photographer Simon Carroll captured this magnificent moment between mother and daughter... there is honestly not a more perfect embrace.\n\n<a href=\"http://www.livingimagephotography.com/wp-content/uploads/2012/08/javelosa-1096-Edit-Edit.jpg\"><img class=\"alignnone size-full wp-image-940\" title=\"javelosa-1096-Edit-Edit\" src=\"http://www.livingimagephotography.com/wp-content/uploads/2012/08/javelosa-1096-Edit-Edit.jpg\" alt=\"\" width=\"266\" height=\"177\" /></a>","Pic of the week!","","inherit","open","open","","640-revision","","","2012-09-19 00:43:53","2012-09-19 00:43:53","","640","http://www.livingimagephotography.com.au/640-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("642","1","2012-09-19 00:47:33","2012-09-19 00:47:33","This weeks Pic of the Week goes to the beautiful mother, Sofia with her 7 month old daughter Isabella. Sofia &amp; Isabella came to our Northbridge Studio to have their Portrait Photography taken earlier this week. They blew us away with an ease behind the camera and a gentle nature. Photographer Simon Carroll captured this magnificent moment between mother and daughter... there is honestly not a more perfect embrace.\n\n<a href=\"http://www.livingimagephotography.com/wp-content/uploads/2012/08/javelosa-1096-Edit-Edit.jpg\"><img class=\"alignnone size-full wp-image-940\" title=\"javelosa-1096-Edit-Edit\" src=\"http://www.livingimagephotography.com/wp-content/uploads/2012/08/javelosa-1096-Edit-Edit.jpg\" alt=\"\" width=\"361\" height=\"229\" /></a>","Pic of the week!","","inherit","open","open","","640-revision-2","","","2012-09-19 00:47:33","2012-09-19 00:47:33","","640","http://www.livingimagephotography.com.au/640-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("643","1","2012-09-19 00:55:25","2012-09-19 00:55:25","","Black BG","","publish","closed","closed","","black-bg","","","2012-10-10 06:53:01","2012-10-10 06:53:01","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=643","0","gallery","","0");
INSERT INTO wp_posts VALUES("1142","1","2012-09-22 00:59:41","2012-09-22 00:59:41","<h3>Sydney</h3>\nGround Floor, Suite C1, 210 Willoughby Road, Crows Nest, NSW, 2065\nPhone: <strong>(02) 9967 3114</strong>\n<br />\n<strong>We are thrilled that you have chosen us to capture your portraits. We\'re sure you will enjoy your experience with us!</strong>\n\nPlease enter your details in the booking request form below, and we will be on contact with you very shortly.\n\n[gravityform id=1 title=false description=false]\n\n<em><strong>Please note, we will do our best to accommodate your preferred date and time for your session, please be aware that we may be unavailable for your preference and will discuss suitable alternatives with you if need be.</strong></em>","Bookings","","inherit","open","open","","20-revision-7","","","2012-09-22 00:59:41","2012-09-22 00:59:41","","20","http://www.livingimagephotography.com.au/20-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("645","1","2012-09-19 00:53:14","2012-09-19 00:53:14","This weeks Pic of the Week goes to the beautiful mother, Sofia with her 7 month old daughter Isabella. Sofia &amp; Isabella came to our Northbridge Studio to have their Portrait Photography taken earlier this week. They blew us away with an ease behind the camera and a gentle nature. Photographer Simon Carroll captured this magnificent moment between mother and daughter... there is honestly not a more perfect embrace.\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/javelosa-1096-Edit-Edit.jpg\"><img class=\"alignnone size-full wp-image-940\" title=\"javelosa-1096-Edit-Edit\" src=\"http://www.livingimagephotography.com/wp-content/uploads/2012/08/javelosa-1096-Edit-Edit.jpg\" alt=\"\" width=\"361\" height=\"229\" /></a>","Pic of the week!","","inherit","open","open","","640-revision-3","","","2012-09-19 00:53:14","2012-09-19 00:53:14","","640","http://www.livingimagephotography.com.au/640-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("646","1","2012-09-19 02:35:28","2012-09-19 02:35:28","This weeks Pic of the Week goes to the beautiful mother, Sofia with her 7 month old daughter Isabella. Sofia &amp; Isabella came to our Northbridge Studio to have their Portrait Photography taken earlier this week. They blew us away with an ease behind the camera and a gentle nature. Photographer Simon Carroll captured this magnificent moment between mother and daughter... there is honestly not a more perfect embrace.\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/javelosa-1096-Edit-Edit.jpg\"><img class=\"alignnone size-full wp-image-940\" title=\"javelosa-1096-Edit-Edit\" src=\"http://www.livingimagephotography.com/wp-content/uploads/2012/08/javelosa-1096-Edit-Edit.jpg\" alt=\"\" width=\"361\" height=\"229\" /></a>","Pic of the week!","","inherit","open","open","","640-revision-4","","","2012-09-19 02:35:28","2012-09-19 02:35:28","","640","http://www.livingimagephotography.com.au/640-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("870","1","2012-09-25 08:49:44","2012-09-25 08:49:44","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <font size=3 face=\"Lucida Handwriting\"><h6>-Simon Carroll</font>\n&nbsp; Photographer</h6>\n[/quote]\n<br />\n<hr />\n\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-45","","","2012-09-25 08:49:44","2012-09-25 08:49:44","","6","http://www.livingimagephotography.com.au/6-revision-45/","0","revision","","0");
INSERT INTO wp_posts VALUES("648","1","2012-09-18 02:24:35","2012-09-18 02:24:35","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Albums","","inherit","open","open","","578-revision-18","","","2012-09-18 02:24:35","2012-09-18 02:24:35","","578","http://www.livingimagephotography.com.au/578-revision-18/","0","revision","","0");
INSERT INTO wp_posts VALUES("650","1","2012-09-19 03:46:39","2012-09-19 03:46:39","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Albums","","inherit","open","open","","578-revision-20","","","2012-09-19 03:46:39","2012-09-19 03:46:39","","578","http://www.livingimagephotography.com.au/578-revision-20/","0","revision","","0");
INSERT INTO wp_posts VALUES("651","1","2012-09-19 03:48:37","2012-09-19 03:48:37","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Albums","","inherit","open","open","","578-revision-21","","","2012-09-19 03:48:37","2012-09-19 03:48:37","","578","http://www.livingimagephotography.com.au/578-revision-21/","0","revision","","0");
INSERT INTO wp_posts VALUES("652","1","2012-09-19 00:22:58","2012-09-19 00:22:58","<h3>Sydney</h3>\nGround Floor, Suite C1, 210 Willoughby Road, Crows Nest, NSW, 2065\nPhone: <strong>(02) 9967 3114</strong>\n<br />\n<strong>We are thrilled that you have chosen us to capture your portraits. We\'re sure you will enjoy your experience with us!</strong>\n\nPlease enter your details in the booking request form below, and we will be on contact with you very shortly.\n\n[gravityform id=1 title=false description=false]\n\n<em><strong>Please note, we will do our best to accommodate your preferred date and time for your session, please be aware that we may be unavailable for your preference and will discuss suitable alternatives with you if need be.</strong></em>","Bookings","","inherit","open","open","","20-revision-4","","","2012-09-19 00:22:58","2012-09-19 00:22:58","","20","http://www.livingimagephotography.com.au/20-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("653","1","2012-09-19 06:47:54","2012-09-19 06:47:54","<h3>Sydney</h3>\nGround Floor, Suite C1, 210 Willoughby Road, Crows Nest, NSW, 2065\nPhone: <strong>(02) 9967 3114</strong>\n<br />\n<strong>We are thrilled that you have chosen us to capture your portraits. We\'re sure you will enjoy your experience with us!</strong>\n\nPlease enter your details in the booking request form below, and we will be on contact with you very shortly.\n\n[gravityform id=1 title=false description=false]\n\n<em><strong>Please note, we will do our best to accommodate your preferred date and time for your session, please be aware that we may be unavailable for your preference and will discuss suitable alternatives with you if need be.</strong></em>\n\n\n\n<iframe width=\"420\" height=\"315\" src=\"http://www.youtube.com/embed/tUOCVhCmDNY\" frameborder=\"0\" allowfullscreen></iframe>","Bookings","","inherit","open","open","","20-revision-5","","","2012-09-19 06:47:54","2012-09-19 06:47:54","","20","http://www.livingimagephotography.com.au/20-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("697","1","2012-09-20 06:25:46","2012-09-20 06:25:46","","Baby_slide","","trash","closed","closed","","baby_slide","","","2012-09-27 01:56:48","2012-09-27 01:56:48","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=697","0","gallery","","0");
INSERT INTO wp_posts VALUES("656","1","2012-09-20 00:55:15","2012-09-20 00:55:15","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120. <strong><a href=\"http://shootthedog.com.au/book-now/\" target=\"_blank\">>> Book Now! <<</a></strong>\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" style=\"float:left\"></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" style=\"float:right\"></a>\n\n","Shoot the Dog","","publish","open","open","","shoot-the-dog","","","2012-10-11 02:04:07","2012-10-11 02:04:07","","0","http://www.livingimagephotography.com.au/?page_id=656","0","page","","0");
INSERT INTO wp_posts VALUES("657","1","2012-09-20 00:49:01","2012-09-20 00:49:01","Living Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.","Announcement","","inherit","open","open","","656-revision","","","2012-09-20 00:49:01","2012-09-20 00:49:01","","656","http://www.livingimagephotography.com.au/656-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("658","1","2012-09-20 00:55:15","2012-09-20 00:55:15","Living Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.","Announcement","","inherit","open","open","","656-revision-2","","","2012-09-20 00:55:15","2012-09-20 00:55:15","","656","http://www.livingimagephotography.com.au/656-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("659","1","2012-09-20 00:58:22","0000-00-00 00:00:00"," ","","","draft","open","open","","","","","2012-09-20 00:58:22","0000-00-00 00:00:00","","0","http://www.livingimagephotography.com.au/?p=659","1","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("660","1","2012-09-26 03:53:13","2012-09-26 03:53:13","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120. <strong><a href=\"http://shootthedog.com.au/book-now/\">>> Book Now! <<</a>\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" style=\"float:left\"></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" style=\"float:right\"></a>\n\n","Shoot the Dog","","inherit","open","open","","656-autosave","","","2012-09-26 03:53:13","2012-09-26 03:53:13","","656","http://www.livingimagephotography.com.au/656-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("661","1","2012-09-20 00:56:52","2012-09-20 00:56:52","Living Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.","Announcement","","inherit","open","open","","656-revision-3","","","2012-09-20 00:56:52","2012-09-20 00:56:52","","656","http://www.livingimagephotography.com.au/656-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("662","1","2012-09-20 01:00:10","2012-09-20 01:00:10"," ","","","publish","open","open","","662","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","0","http://www.livingimagephotography.com.au/?p=662","3","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("664","1","2012-09-20 01:06:24","2012-09-20 01:06:24","<font color=\"#ff8000\"><h2>ANNOUNCEMENT</h2></font>\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a>Living Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.","Shoot the Dog","","inherit","open","open","","656-revision-5","","","2012-09-20 01:06:24","2012-09-20 01:06:24","","656","http://www.livingimagephotography.com.au/656-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("663","1","2012-09-20 00:59:12","2012-09-20 00:59:12","Living Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.","Shoot the Dog","","inherit","open","open","","656-revision-4","","","2012-09-20 00:59:12","2012-09-20 00:59:12","","656","http://www.livingimagephotography.com.au/656-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("665","1","2012-09-20 01:24:39","2012-09-20 01:24:39","<font color=\"#ff8000\"><h2>ANNOUNCEMENT</h2></font>\n\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>Living Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.","Shoot the Dog","","inherit","open","open","","656-revision-6","","","2012-09-20 01:24:39","2012-09-20 01:24:39","","656","http://www.livingimagephotography.com.au/656-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("666","1","2012-09-20 01:26:23","2012-09-20 01:26:23","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.","Shoot the Dog","","inherit","open","open","","656-revision-7","","","2012-09-20 01:26:23","2012-09-20 01:26:23","","656","http://www.livingimagephotography.com.au/656-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("670","1","2012-09-20 01:45:26","2012-09-20 01:45:26","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=http://www.google.com\">\nShare This Link on Facebook</a>","Shoot the Dog","","inherit","open","open","","656-revision-11","","","2012-09-20 01:45:26","2012-09-20 01:45:26","","656","http://www.livingimagephotography.com.au/656-revision-11/","0","revision","","0");
INSERT INTO wp_posts VALUES("668","1","2012-09-20 01:40:17","2012-09-20 01:40:17","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<a name=\"fb_share\" type=\"button\" share_url=\"<?php the_permalink(); ?>\"></a>\n<script src=\"http://static.ak.fbcdn.net/connect.php/js/FB.Share\" type=\"text/javascript\"></script>","Shoot the Dog","","inherit","open","open","","656-revision-9","","","2012-09-20 01:40:17","2012-09-20 01:40:17","","656","http://www.livingimagephotography.com.au/656-revision-9/","0","revision","","0");
INSERT INTO wp_posts VALUES("667","1","2012-09-20 01:36:47","2012-09-20 01:36:47","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<script>function fbs_click() {u=location.href;t=document.title;window.open(\'http://www.facebook.com/sharer.php?u=\'+encodeURIComponent(u)+\'&t=\'+encodeURIComponent(t),\'sharer\',\'toolbar=0,status=0,width=626,height=436\');return false;}</script><style> html .fb_share_link { padding:2px 0 0 20px; height:16px; background:url(http://static.ak.facebook.com/images/share/facebook_share_icon.gif?6:26981) no-repeat top left; }</style><a rel=\"nofollow\" href=\"http://www.facebook.com/share.php?u=<;url>\" onclick=\"return fbs_click()\" target=\"_blank\" class=\"fb_share_link\">Share on Facebook</a>","Shoot the Dog","","inherit","open","open","","656-revision-8","","","2012-09-20 01:36:47","2012-09-20 01:36:47","","656","http://www.livingimagephotography.com.au/656-revision-8/","0","revision","","0");
INSERT INTO wp_posts VALUES("669","1","2012-09-20 01:42:42","2012-09-20 01:42:42","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a name=\"fb_share\" type=\"button\" share_url=\"<?php the_permalink(); ?>\"></a>\n<script src=\"http://static.ak.fbcdn.net/connect.php/js/FB.Share\" type=\"text/javascript\"></script>","Shoot the Dog","","inherit","open","open","","656-revision-10","","","2012-09-20 01:42:42","2012-09-20 01:42:42","","656","http://www.livingimagephotography.com.au/656-revision-10/","0","revision","","0");
INSERT INTO wp_posts VALUES("671","1","2012-09-20 01:48:02","2012-09-20 01:48:02","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\">\nShare This Link on Facebook</a>","Shoot the Dog","","inherit","open","open","","656-revision-12","","","2012-09-20 01:48:02","2012-09-20 01:48:02","","656","http://www.livingimagephotography.com.au/656-revision-12/","0","revision","","0");
INSERT INTO wp_posts VALUES("672","1","2012-09-20 02:00:40","2012-09-20 02:00:40","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\nShare This Link on Facebook</a>","Shoot the Dog","","inherit","open","open","","656-revision-13","","","2012-09-20 02:00:40","2012-09-20 02:00:40","","656","http://www.livingimagephotography.com.au/656-revision-13/","0","revision","","0");
INSERT INTO wp_posts VALUES("673","1","2012-09-20 02:04:17","2012-09-20 02:04:17","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>","Shoot the Dog","","inherit","open","open","","656-revision-14","","","2012-09-20 02:04:17","2012-09-20 02:04:17","","656","http://www.livingimagephotography.com.au/656-revision-14/","0","revision","","0");
INSERT INTO wp_posts VALUES("674","1","2012-09-20 02:10:08","2012-09-20 02:10:08","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n<div class=\"cleared\"></div>\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\"src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\"></a>","Shoot the Dog","","inherit","open","open","","656-revision-15","","","2012-09-20 02:10:08","2012-09-20 02:10:08","","656","http://www.livingimagephotography.com.au/656-revision-15/","0","revision","","0");
INSERT INTO wp_posts VALUES("680","1","2012-09-20 03:06:05","2012-09-20 03:06:05","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n<div class=\"cleared\"></div>\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" /></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img align=\"right\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" /></a>\n","Shoot the Dog","","inherit","open","open","","656-revision-21","","","2012-09-20 03:06:05","2012-09-20 03:06:05","","656","http://www.livingimagephotography.com.au/656-revision-21/","0","revision","","0");
INSERT INTO wp_posts VALUES("677","1","2012-09-20 02:48:15","2012-09-20 02:48:15","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n<div class=\"cleared\"></div>\n<div class=\"cleared\"></div>\n\n<div>\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img align=\"left\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\"></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img align=\"right\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\"></a>\n</div>","Shoot the Dog","","inherit","open","open","","656-revision-18","","","2012-09-20 02:48:15","2012-09-20 02:48:15","","656","http://www.livingimagephotography.com.au/656-revision-18/","0","revision","","0");
INSERT INTO wp_posts VALUES("675","1","2012-09-20 02:38:08","2012-09-20 02:38:08","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n<div class=\"cleared\"></div>\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\"src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\"></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\"src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\"></a>","Shoot the Dog","","inherit","open","open","","656-revision-16","","","2012-09-20 02:38:08","2012-09-20 02:38:08","","656","http://www.livingimagephotography.com.au/656-revision-16/","0","revision","","0");
INSERT INTO wp_posts VALUES("676","1","2012-09-20 02:42:41","2012-09-20 02:42:41","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n<div class=\"cleared\"></div>\n<div class=\"cleared\"></div>\n\n<div>\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\"src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\"></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\"src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\"></a>\n</div>","Shoot the Dog","","inherit","open","open","","656-revision-17","","","2012-09-20 02:42:41","2012-09-20 02:42:41","","656","http://www.livingimagephotography.com.au/656-revision-17/","0","revision","","0");
INSERT INTO wp_posts VALUES("678","1","2012-09-20 02:51:07","2012-09-20 02:51:07","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n<div class=\"cleared\"></div>\n<div class=\"cleared\"></div>\n\n<div>\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img align=\"left\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" /></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img align=\"right\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" /></a>\n</div>","Shoot the Dog","","inherit","open","open","","656-revision-19","","","2012-09-20 02:51:07","2012-09-20 02:51:07","","656","http://www.livingimagephotography.com.au/656-revision-19/","0","revision","","0");
INSERT INTO wp_posts VALUES("679","1","2012-09-20 03:03:42","2012-09-20 03:03:42","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n<div class=\"cleared\"></div>\n<div class=\"cleared\"></div>\n\n<div>\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img align=\"left\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" /></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img align=\"right\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" /></a>\n</div>","Shoot the Dog","","inherit","open","open","","656-revision-20","","","2012-09-20 03:03:42","2012-09-20 03:03:42","","656","http://www.livingimagephotography.com.au/656-revision-20/","0","revision","","0");
INSERT INTO wp_posts VALUES("683","1","2012-09-20 03:16:03","2012-09-20 03:16:03","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n<div class=\"cleared\"></div>\n<div class=\"cleared\"></div>\n\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" align=\"left\" /></a>\n<a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" align=\"right\" /></a>","Shoot the Dog","","inherit","open","open","","656-revision-24","","","2012-09-20 03:16:03","2012-09-20 03:16:03","","656","http://www.livingimagephotography.com.au/656-revision-24/","0","revision","","0");
INSERT INTO wp_posts VALUES("681","1","2012-09-20 03:07:37","2012-09-20 03:07:37","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n<div class=\"cleared\"></div>\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img align=\"right\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" /></a>\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" /></a>","Shoot the Dog","","inherit","open","open","","656-revision-22","","","2012-09-20 03:07:37","2012-09-20 03:07:37","","656","http://www.livingimagephotography.com.au/656-revision-22/","0","revision","","0");
INSERT INTO wp_posts VALUES("682","1","2012-09-20 03:12:42","2012-09-20 03:12:42","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n<div class=\"cleared\"></div>\n<div class=\"cleared\"></div>\n\n\n<span style=\"text-align: left\"><a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" /></a></span>\n<span style=\"text-align: right\"><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" /></a></span>","Shoot the Dog","","inherit","open","open","","656-revision-23","","","2012-09-20 03:12:42","2012-09-20 03:12:42","","656","http://www.livingimagephotography.com.au/656-revision-23/","0","revision","","0");
INSERT INTO wp_posts VALUES("684","1","2012-09-20 03:19:55","2012-09-20 03:19:55","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n<div class=\"cleared\"></div>\n<div class=\"cleared\"></div>\n\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" align=\"left\" /></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" align=\"right\" /></a>","Shoot the Dog","","inherit","open","open","","656-revision-25","","","2012-09-20 03:19:55","2012-09-20 03:19:55","","656","http://www.livingimagephotography.com.au/656-revision-25/","0","revision","","0");
INSERT INTO wp_posts VALUES("685","1","2012-09-20 03:26:14","2012-09-20 03:26:14","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n<div class=\"cleared\"></div>\n<div class=\"cleared\"></div>\n\n<div align=\"left\">\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" /></a>\n</div>\n<div align=\"right\">\n<a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" /></a>\n</div>","Shoot the Dog","","inherit","open","open","","656-revision-26","","","2012-09-20 03:26:14","2012-09-20 03:26:14","","656","http://www.livingimagephotography.com.au/656-revision-26/","0","revision","","0");
INSERT INTO wp_posts VALUES("687","1","2012-09-20 03:38:09","2012-09-20 03:38:09","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n<div class=\"cleared\"></div>\n<div class=\"cleared\"></div>\n\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" border=\"0\" align=\"left\" alt=\"My Image\" /><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" border=\"0\" alt=\"My Image\" /><br clear=\"left\" />\n","Shoot the Dog","","inherit","open","open","","656-revision-28","","","2012-09-20 03:38:09","2012-09-20 03:38:09","","656","http://www.livingimagephotography.com.au/656-revision-28/","0","revision","","0");
INSERT INTO wp_posts VALUES("686","1","2012-09-20 03:27:08","2012-09-20 03:27:08","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n<div class=\"cleared\"></div>\n<div class=\"cleared\"></div>\n\n<div align=\"left\">\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" /></a>\n</div>\n<div align=\"right\">\n<a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" /></a>\n</div>","Shoot the Dog","","inherit","open","open","","656-revision-27","","","2012-09-20 03:27:08","2012-09-20 03:27:08","","656","http://www.livingimagephotography.com.au/656-revision-27/","0","revision","","0");
INSERT INTO wp_posts VALUES("690","1","2012-09-20 04:08:01","2012-09-20 04:08:01","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n\n<div>\n\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" class=\"alignleft\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" class=\"alignright\">\n\n</div>\n","Shoot the Dog","","inherit","open","open","","656-revision-31","","","2012-09-20 04:08:01","2012-09-20 04:08:01","","656","http://www.livingimagephotography.com.au/656-revision-31/","0","revision","","0");
INSERT INTO wp_posts VALUES("689","1","2012-09-20 04:04:36","2012-09-20 04:04:36","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n\n<div align=\"left\">\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\"></a>\n</div>\n<div align=\"right\">\n<a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" ></a>\n</div>\n","Shoot the Dog","","inherit","open","open","","656-revision-30","","","2012-09-20 04:04:36","2012-09-20 04:04:36","","656","http://www.livingimagephotography.com.au/656-revision-30/","0","revision","","0");
INSERT INTO wp_posts VALUES("688","1","2012-09-20 04:01:01","2012-09-20 04:01:01","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n\n<div align=\"left\">\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\"></a>\n</div>\n<div align=\"right\">\n<a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" ></a>\n</div>\n","Shoot the Dog","","inherit","open","open","","656-revision-29","","","2012-09-20 04:01:01","2012-09-20 04:01:01","","656","http://www.livingimagephotography.com.au/656-revision-29/","0","revision","","0");
INSERT INTO wp_posts VALUES("691","1","2012-09-20 04:09:34","2012-09-20 04:09:34","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n\n<div>\n\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" class=\"float-left\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" class=\"float-right\">\n\n</div>\n","Shoot the Dog","","inherit","open","open","","656-revision-32","","","2012-09-20 04:09:34","2012-09-20 04:09:34","","656","http://www.livingimagephotography.com.au/656-revision-32/","0","revision","","0");
INSERT INTO wp_posts VALUES("692","1","2012-09-20 04:18:18","2012-09-20 04:18:18","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n\n<div>\n\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" style=\"float:left\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" style=\"float:right\">\n\n</div>\n","Shoot the Dog","","inherit","open","open","","656-revision-33","","","2012-09-20 04:18:18","2012-09-20 04:18:18","","656","http://www.livingimagephotography.com.au/656-revision-33/","0","revision","","0");
INSERT INTO wp_posts VALUES("693","1","2012-09-20 04:20:17","2012-09-20 04:20:17","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n<br />\n<br />\n<br />\n\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" style=\"float:left\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" style=\"float:right\">\n\n","Shoot the Dog","","inherit","open","open","","656-revision-34","","","2012-09-20 04:20:17","2012-09-20 04:20:17","","656","http://www.livingimagephotography.com.au/656-revision-34/","0","revision","","0");
INSERT INTO wp_posts VALUES("694","1","2012-09-20 04:22:37","2012-09-20 04:22:37","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n\n\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" style=\"float:left\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" style=\"float:right\">\n\n","Shoot the Dog","","inherit","open","open","","656-revision-35","","","2012-09-20 04:22:37","2012-09-20 04:22:37","","656","http://www.livingimagephotography.com.au/656-revision-35/","0","revision","","0");
INSERT INTO wp_posts VALUES("695","1","2012-09-20 04:23:41","2012-09-20 04:23:41","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n\n\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" style=\"float:left\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" style=\"float:right\">\n\n","Shoot the Dog","","inherit","open","open","","656-revision-36","","","2012-09-20 04:23:41","2012-09-20 04:23:41","","656","http://www.livingimagephotography.com.au/656-revision-36/","0","revision","","0");
INSERT INTO wp_posts VALUES("696","1","2012-09-20 04:26:31","2012-09-20 04:26:31","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" style=\"float:left\"></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" style=\"float:right\"></a>\n\n","Shoot the Dog","","inherit","open","open","","656-revision-37","","","2012-09-20 04:26:31","2012-09-20 04:26:31","","656","http://www.livingimagephotography.com.au/656-revision-37/","0","revision","","0");
INSERT INTO wp_posts VALUES("698","1","2012-09-20 06:26:55","2012-09-20 06:26:55","","baby_5","","trash","open","open","","baby_5","","","2012-09-20 06:50:03","2012-09-20 06:50:03","","697","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/baby_5.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("699","1","2012-09-20 06:27:15","2012-09-20 06:27:15","","baby_6","","trash","open","open","","baby_6","","","2012-09-20 06:50:03","2012-09-20 06:50:03","","697","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/baby_6.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("700","1","2012-09-20 06:27:30","2012-09-20 06:27:30","","baby_1","","trash","open","open","","baby_1","","","2012-09-20 06:50:03","2012-09-20 06:50:03","","697","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/baby_1.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("701","1","2012-09-20 06:27:45","2012-09-20 06:27:45","","baby_2","","trash","open","open","","baby_2","","","2012-09-20 06:50:03","2012-09-20 06:50:03","","697","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/baby_2.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("702","1","2012-09-20 06:27:57","2012-09-20 06:27:57","","baby_3","","trash","open","open","","baby_3","","","2012-09-20 06:50:03","2012-09-20 06:50:03","","697","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/baby_3.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("703","1","2012-09-20 06:28:06","2012-09-20 06:28:06","","baby_4","","trash","open","open","","baby_4","","","2012-09-20 06:50:03","2012-09-20 06:50:03","","697","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/baby_4.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("704","1","2012-09-13 05:30:32","2012-09-13 05:30:32","Nothing beats those cute chubby hands and feet, big gummy smiles and if we\'re lucky some giggles. Our baby portraits are fun and unique. We spend the time to patiently capture your little one\'s character. Keeping playful and light we create a variety of portraits that will just make your heart melt.\n\nThis is a wonderful period in your babies life to have their portrait done, they change so quickly, and before you know it those beautiful baby features will have gone. Capture those special little things for life with a baby portrait from us!","Baby Portraits","","inherit","open","open","","71-revision-7","","","2012-09-13 05:30:32","2012-09-13 05:30:32","","71","http://www.livingimagephotography.com.au/71-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("705","1","2012-09-20 06:45:01","2012-09-20 06:45:01","","babies_slide_1","","trash","open","open","","babies_slide_1","","","2012-09-20 07:02:00","2012-09-20 07:02:00","","697","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/babies_slide_1.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("706","1","2012-09-20 06:50:41","2012-09-20 06:50:41","","babies_slide_2","","trash","open","open","","babies_slide_2","","","2012-09-20 07:02:00","2012-09-20 07:02:00","","697","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/babies_slide_2.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("707","1","2012-09-20 06:56:30","2012-09-20 06:56:30","","babies_slide_3","","trash","open","open","","babies_slide_3","","","2012-09-20 07:02:00","2012-09-20 07:02:00","","697","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/babies_slide_3.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("718","1","2012-09-20 07:37:28","2012-09-20 07:37:28","","Individual_slide","","trash","closed","closed","","individual_slide","","","2012-10-09 02:01:05","2012-10-09 02:01:05","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=718","0","gallery","","0");
INSERT INTO wp_posts VALUES("719","1","2012-09-20 07:38:12","2012-09-20 07:38:12","","individual_slide_6","","trash","open","open","","individual_slide_6","","","2012-09-21 04:32:54","2012-09-21 04:32:54","","718","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/individual_slide_6.jpg","14","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("720","1","2012-09-20 07:38:20","2012-09-20 07:38:20","","individual_slide_7","","trash","open","open","","individual_slide_7","","","2012-09-21 04:32:54","2012-09-21 04:32:54","","718","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/individual_slide_7.jpg","13","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("733","1","2012-09-15 04:24:08","2012-09-15 04:24:08","Celebrate you! Time moves on constantly, and at certain points in our life we do take pause to think about ourselves; where we are now and what we have achieved. A great way to permanently remember these moments and celebrate yourself is with an Individual Portrait collection from us.\n\nWe design your Individual Portrait session to suit you and your personality, often with a mix of creative and candid portraits - and maybe something dramatic if you\'re daring... Our very personal photographers will chat with you and spend some quality time working with you to create a collection of amazing individual portraits that are YOU.\n\nHave a look through some of our examples below, we\'re always pushing the boundaries and trying new things with our Individual portraits, so if you have a few ideas please bring them along.\n\nJump on board now, [intlink id=\"183\" type=\"page\"]contact us[/intlink] and we\'ll get your adventure started - soon you will be enjoying your Individual portrait forever!","Individual Portraits","","inherit","open","open","","83-revision-3","","","2012-09-15 04:24:08","2012-09-15 04:24:08","","83","http://www.livingimagephotography.com.au/83-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("734","1","2012-09-20 07:44:02","2012-09-20 07:44:02","Celebrate you! Time moves on constantly, and at certain points in our life we do take pause to think about ourselves; where we are now and what we have achieved. A great way to permanently remember these moments and celebrate yourself is with an Individual Portrait collection from us.\n\nWe design your Individual Portrait session to suit you and your personality, often with a mix of creative and candid portraits - and maybe something dramatic if you\'re daring... Our very personal photographers will chat with you and spend some quality time working with you to create a collection of amazing individual portraits that are YOU.\n\nHave a look through some of our examples below, we\'re always pushing the boundaries and trying new things with our Individual portraits, so if you have a few ideas please bring them along.\n\nJump on board now, contact us[/intlink] and we\'ll get your adventure started - soon you will be enjoying your Individual portrait forever!","Individual Portraits","","inherit","open","open","","83-autosave","","","2012-09-20 07:44:02","2012-09-20 07:44:02","","83","http://www.livingimagephotography.com.au/83-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("735","1","2012-09-20 07:41:51","2012-09-20 07:41:51","Celebrate you! Time moves on constantly, and at certain points in our life we do take pause to think about ourselves; where we are now and what we have achieved. A great way to permanently remember these moments and celebrate yourself is with an Individual Portrait collection from us.\n\nWe design your Individual Portrait session to suit you and your personality, often with a mix of creative and candid portraits - and maybe something dramatic if you\'re daring... Our very personal photographers will chat with you and spend some quality time working with you to create a collection of amazing individual portraits that are YOU.\n\nHave a look through some of our examples below, we\'re always pushing the boundaries and trying new things with our Individual portraits, so if you have a few ideas please bring them along.\n\nJump on board now, [intlink id=\"183\" type=\"page\"]contact us[/intlink] and we\'ll get your adventure started - soon you will be enjoying your Individual portrait forever!","Individual Portraits","","inherit","open","open","","83-revision-4","","","2012-09-20 07:41:51","2012-09-20 07:41:51","","83","http://www.livingimagephotography.com.au/83-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("736","1","2012-09-20 07:51:44","2012-09-20 07:51:44","","couple_slide","","trash","closed","closed","","couple_slide","","","2012-10-09 02:01:05","2012-10-09 02:01:05","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=736","0","gallery","","0");
INSERT INTO wp_posts VALUES("740","1","2012-09-20 07:52:37","2012-09-20 07:52:37","","couple_slide_2","","trash","open","open","","couple_slide_2","","","2012-09-21 04:28:15","2012-09-21 04:28:15","","736","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/couple_slide_2.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("746","1","2012-09-20 07:53:24","2012-09-20 07:53:24","","couple_slide_8","","trash","open","open","","couple_slide_8","","","2012-09-21 04:28:15","2012-09-21 04:28:15","","736","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/couple_slide_8.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("747","1","2012-09-13 06:45:27","2012-09-13 06:45:27","The intimacy between two people reflected in an image always invokes a satisfying sense of love, security, and hope.<strong> </strong>Capturing these emotions in a couple’s portrait is our challenge...a challenge that we truly enjoy, and as you can see by our work, very successful at meeting.\n\nOur Couples portraits are the most dynamic and enjoyable type of photographic sessions that we shoot.. Although it often takes the men some time to relax, we find that enjoying the session and the freedom to try different things comes quite easily to them soon enough.\n\nCreating a fun and relaxed atmosphere is the key to allowing the true character of each individual to surface. Then, we are able to witness the true interaction between the couple - those special looks, squeezes and kisses that mean so much but are often overlooked in a couple’s portrait. The special way your man holds your hand, or the way your partner rests her head on your chest, these are the details that tell the story.\n\nOur work is designed to reflect you as a couple, not merely shots of two people. There’s an important distinction between the two and that is where having a professional photographer create artistic portraits of you makes all the difference. We understand how to capture people at their best and how to reflect the intimacy that you share.  Our couples\' portraits are almost a study on human nature.\n\nThe technical aspect of our work is very precise; we have all spent many years perfecting our art, which allows us to concentrate on the emotion and composition of a shot.  You can rest assured that we will capture a high quality photography ready to be printed at whatever size you choose.\n\nIf you are interested in our work please give us a call to discuss your options.  Remember, you can design the type of photographs we take or you can leave us to our creative ways. Often we find the middle ground between your design and our creativity results in truly outstanding portraits that you will treasure.","Couple Portraits","","inherit","open","open","","79-revision-3","","","2012-09-13 06:45:27","2012-09-13 06:45:27","","79","http://www.livingimagephotography.com.au/79-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("748","1","2012-09-20 08:03:07","2012-09-20 08:03:07","","pregnancy_slide","","trash","closed","closed","","pregnancy_slide","","","2012-10-09 02:01:05","2012-10-09 02:01:05","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=748","0","gallery","","0");
INSERT INTO wp_posts VALUES("757","1","2012-09-20 08:04:33","2012-09-20 08:04:33","","maternity_slide_7","","trash","open","open","","maternity_slide_7","","","2012-09-21 03:07:17","2012-09-21 03:07:17","","748","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maternity_slide_7.jpg","2","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("758","1","2012-09-15 05:25:08","2012-09-15 05:25:08","Pregnancy is a very special time in a woman’s life that can be remembered forever with a beautiful, artistic maternity portrait. Whether this is your 1st child or your 4th, it’s still an amazing experience that should be honoured with great images of this special time.\n\nIn a safe, comfortable and relaxed environment, we encourage our expectant clients to have fun with their photographic session. Wear as much or as little clothing that you are comfortable with, and bring your partner and other children to share in this special moment.\n\nWe find the best time to photograph our expecting mums is between 6-10 weeks prior to the birth.  If you are closer to the delivery date, please call us now so we can fit you in as soon as possible – you don’t want to miss this wonderful opportunity.\n\nOur pre-natal photography is designed to your taste - you have full control over the look of your images. We can create stunning black and white studio shots or be more daring and work with environmental landscapes – the options are endless.\n\nPlanning your pregnancy photographs is crucial to achieving the look you desire.  Thus, we encourage you to call us for a friendly chat and a visit to the studio to plan your pregnancy portrait session and meet us in person.\n\nWe hope you enjoy viewing our work and look forward to hearing from you very soon.  Please don’t miss this opportunity to capture you as you are now.\n","Pregnancy Portraits","","inherit","open","open","","87-revision-3","","","2012-09-15 05:25:08","2012-09-15 05:25:08","","87","http://www.livingimagephotography.com.au/87-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("759","1","2012-09-20 23:24:16","2012-09-20 23:24:16","","Background-img","","trash","closed","closed","","background-img","","","2012-10-09 02:01:54","2012-10-09 02:01:54","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=759","0","gallery","","0");
INSERT INTO wp_posts VALUES("762","1","2012-09-15 03:00:13","2012-09-15 03:00:13","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <h6>-Simon Carroll</h6> \n[/quote]\n<br />\n","Welcome","","inherit","open","open","","6-revision-29","","","2012-09-15 03:00:13","2012-09-15 03:00:13","","6","http://www.livingimagephotography.com.au/6-revision-29/","0","revision","","0");
INSERT INTO wp_posts VALUES("1038","1","2012-10-05 01:09:07","0000-00-00 00:00:00","","","","draft","closed","closed","","","","","2012-10-05 01:09:07","2012-10-05 01:09:07","","0","http://www.livingimagephotography.com.au/?post_type=portfolios&#038;p=1038","0","portfolios","","0");
INSERT INTO wp_posts VALUES("765","1","2012-09-21 02:02:30","2012-09-21 02:02:30","","LivingImageBg","","inherit","open","open","","livingimagebg","","","2012-09-21 02:02:30","2012-09-21 02:02:30","","759","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImageBg.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("838","1","2012-09-22 02:48:50","2012-09-22 02:48:50","","post1","","inherit","open","open","","post1","","","2012-09-22 02:48:50","2012-09-22 02:48:50","","640","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/post1.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("769","1","2012-09-19 02:36:53","2012-09-19 02:36:53","<br />\nThis weeks Pic of the Week goes to the beautiful mother, Sofia with her 7 month old daughter Isabella. Sofia &amp; Isabella came to our Northbridge Studio to have their Portrait Photography taken earlier this week. They blew us away with an ease behind the camera and a gentle nature. Photographer Simon Carroll captured this magnificent moment between mother and daughter... there is honestly not a more perfect embrace.\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/javelosa-1096-Edit-Edit.jpg\"><img class=\"alignnone size-full wp-image-940\" title=\"javelosa-1096-Edit-Edit\" src=\"http://www.livingimagephotography.com/wp-content/uploads/2012/08/javelosa-1096-Edit-Edit.jpg\" alt=\"\" width=\"361\" height=\"229\" /></a>","Pic of the week!","","inherit","open","open","","640-revision-5","","","2012-09-19 02:36:53","2012-09-19 02:36:53","","640","http://www.livingimagephotography.com.au/640-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("772","1","2012-09-20 23:29:26","2012-09-20 23:29:26","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <h6>-Simon Carroll</h6> \n[/quote]\n<br />\n","Welcome","","inherit","open","open","","6-revision-30","","","2012-09-20 23:29:26","2012-09-20 23:29:26","","6","http://www.livingimagephotography.com.au/6-revision-30/","0","revision","","0");
INSERT INTO wp_posts VALUES("773","1","2012-09-21 06:07:38","2012-09-21 06:07:38","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <h6>-Simon Carroll</h6> \n[/quote]\n<br />\n","Welcome","","inherit","open","open","","6-revision-31","","","2012-09-21 06:07:38","2012-09-21 06:07:38","","6","http://www.livingimagephotography.com.au/6-revision-31/","0","revision","","0");
INSERT INTO wp_posts VALUES("774","1","2012-09-21 06:12:12","2012-09-21 06:12:12","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <h6>-Simon Carroll</h6> \n[/quote]\n<br />\n","Welcome","","inherit","open","open","","6-revision-32","","","2012-09-21 06:12:12","2012-09-21 06:12:12","","6","http://www.livingimagephotography.com.au/6-revision-32/","0","revision","","0");
INSERT INTO wp_posts VALUES("775","1","2012-09-21 06:58:46","2012-09-21 06:58:46","","newborn_slide","","trash","closed","closed","","newborn_slide","","","2012-10-09 02:01:05","2012-10-09 02:01:05","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=775","0","gallery","","0");
INSERT INTO wp_posts VALUES("788","1","2012-09-15 04:57:27","2012-09-15 04:57:27","We cherish our newborns - your precious new person, with their chubby little hands, tiny-tiny feet, funny expressions and big-big yawns. Do they not make your heart glow? At such an important stage of life it is important to capture these little ones as they are now. There’s no better way than to have a unique newborn portrait session with us.\n\nOur creative newborn portrait sessions allow us to capture your wonderful child in their very early stage of life. We focus our attention on their unique facial character, dimples and the sometimes forgotten details like their feet, their hands and chubby bottoms.\n\nOften the window of opportunity is very small when photographing newborn portraits. Within the first 2 weeks from birth is the best time. We also try to plan your newborn portrait session for straight after a feed or just before sleep so we can create beautiful peaceful images that you and your family will treasure.\n\nSometimes capturing babies at this stage can take a couple of goes; they are certainly not predictable and work to their own routine, not anyone else’s. We are very well aware of the demands newborns put on parents and we gear ourselves towards creating a relaxed atmosphere so both parent and child can feel at ease. We use a warm, hygienic and private studio and do not use flash lighting wherever possible. This experience helps us to create timeless images of the beautiful newborn children that grace our studio.\n\nPlease be sure to contact us for a friendly chat about our newborn portrait photography, you may wish to book a time at this early stage to visit the studio and experience our many different photographic styles that we have on offer. We look forward to meeting with you very soon.\n","Newborn Portraits","","inherit","open","open","","85-revision-4","","","2012-09-15 04:57:27","2012-09-15 04:57:27","","85","http://www.livingimagephotography.com.au/85-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("789","1","2012-09-21 07:57:32","2012-09-21 07:57:32","","child_slide","","trash","closed","closed","","child_slides","","","2012-09-27 01:56:48","2012-09-27 01:56:48","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=789","0","gallery","","0");
INSERT INTO wp_posts VALUES("794","1","2012-09-12 07:09:20","2012-09-12 07:09:20","","Child Portraits","","inherit","open","open","","73-revision","","","2012-09-12 07:09:20","2012-09-12 07:09:20","","73","http://www.livingimagephotography.com.au/73-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("795","1","2012-09-21 08:01:35","2012-09-21 08:01:35","","Child Portraits","","inherit","open","open","","73-revision-2","","","2012-09-21 08:01:35","2012-09-21 08:01:35","","73","http://www.livingimagephotography.com.au/73-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("796","1","2012-09-13 05:32:15","2012-09-13 05:32:15","Photographing children’s portraits can be one of the most rewarding experiences!  Enjoying the fun and excitement of youth always reflects well in our work. We photograph children from infant through to early teenage years, and we enjoy a unique experience every time. It’s amazing how many different little personalities we encounter.\n\nOur creative children’s portraiture is the envy of many of our top-class peers: we have a simple method that ensures that our children enjoy themselves and interact with the whole portrait session. It’s definitely not just chasing a child around with a camera, which will never yield great results.\n\nExperience and creativity allow us to relax and interact with your child, in order to bring out their little personalities and capture them as they are. We like to make the children’s portrait session enjoyable and exciting for your little one - always careful not to over stimulate. We think it’s important that your child feels like they have a say, or some control in the session.  This helps to overcome their fear of being photographed and also involves the little one directly in the portrait process - which brings the portrait session to life.\n\nAlong with the studio portrait sessions, we enjoy photographing many of our child portrait studies on location.  We have some picturesque situations that really create amazing compositions, we’re sure you will agree.","Child Portraits","","inherit","open","open","","75-revision-5","","","2012-09-13 05:32:15","2012-09-13 05:32:15","","75","http://www.livingimagephotography.com.au/75-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("797","1","2012-09-21 08:02:40","2012-09-21 08:02:40","Photographing children’s portraits can be one of the most rewarding experiences!  Enjoying the fun and excitement of youth always reflects well in our work. We photograph children from infant through to early teenage years, and we enjoy a unique experience every time. It’s amazing how many different little personalities we encounter.\n\nOur creative children’s portraiture is the envy of many of our top-class peers: we have a simple method that ensures that our children enjoy themselves and interact with the whole portrait session. It’s definitely not just chasing a child around with a camera, which will never yield great results.\n\nExperience and creativity allow us to relax and interact with your child, in order to bring out their little personalities and capture them as they are. We like to make the children’s portrait session enjoyable and exciting for your little one - always careful not to over stimulate. We think it’s important that your child feels like they have a say, or some control in the session.  This helps to overcome their fear of being photographed and also involves the little one directly in the portrait process - which brings the portrait session to life.\n\nAlong with the studio portrait sessions, we enjoy photographing many of our child portrait studies on location.  We have some picturesque situations that really create amazing compositions, we’re sure you will agree.","Child Portraits","","inherit","open","open","","75-revision-6","","","2012-09-21 08:02:40","2012-09-21 08:02:40","","75","http://www.livingimagephotography.com.au/75-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("798","1","2012-09-21 08:19:38","2012-09-21 08:19:38","","corporate_slide","","trash","closed","closed","","family_slide","","","2012-10-09 02:01:05","2012-10-09 02:01:05","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=798","0","gallery","","0");
INSERT INTO wp_posts VALUES("1054","1","2012-10-09 04:33:11","2012-10-09 04:33:11","","Animal Portraits","","publish","closed","closed","","animal-portraits","","","2012-10-09 04:33:11","2012-10-09 04:33:11","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=1054","0","gallery","","0");
INSERT INTO wp_posts VALUES("803","1","2012-09-21 08:30:52","2012-09-21 08:30:52","","family_slide","","trash","closed","closed","","family_slide-2","","","2012-10-09 02:01:05","2012-10-09 02:01:05","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=803","0","gallery","","0");
INSERT INTO wp_posts VALUES("804","1","2012-09-13 06:32:10","2012-09-13 06:32:10","Getting your professional image right is very important, and having a corporate headshot that mimics your image is just as important.\n\nWe take the time to create a host of different portrait poses and looks to achieve the exact representation that you wish to portray in your corporate headshot.\n\nOur corporate headshots can be simple plain white background, great for business cards and for clipping, or we can create more dynamic portraits that represent more personality and feel for your corporate image. Chat with us about your options.\n\nWe deliver your corporate headshots promptly, with all digital files colour corrected in super high resolution ready for print or digital publishing.\n\nWe cater for individuals or whole teams, on site or in our centrally located studios. Have a look through our corporate headshot gallery below and [intlink id=\"183\" type=\"page\"]contact us[/intlink] for more information.","Corporate Headshots","","inherit","open","open","","77-revision-6","","","2012-09-13 06:32:10","2012-09-13 06:32:10","","77","http://www.livingimagephotography.com.au/77-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("816","1","2012-09-14 03:10:38","2012-09-14 03:10:38","The best way to remember your family as they are now is with a creative family portrait.<strong> </strong>It’s important to capture your family as they are now, as time moves so fast, and kids grow up so quickly.\n\nCreating stunning family portraits for our clients remains the true passion of our studio. We truly enjoy the time we spend with our clients, capturing unique portraits of them together as their family unit. Our work reflects the passion we have for creating this wonderful work.  Every family is different, made up of so many different characters, that it really makes our work very interesting.\n\nA great way to spend a few hours, we find, is experiencing our clients together as a family. We create a relaxed environment where the personalities of family members come out, allowing us to capture the interaction of the family as they truly are.\n\nBe proud of your family and display a unique family portrait in your home - your friends and colleagues will be envious.\n\nWe have a host of display options for your family portraits designed to compliment your home, which all come with a life time guarantee.\n\nContact us now to arrange a family portrait consultation so you can spend some important time with us; exploring your options and planning your upcoming family portrait.","Family Portraits","","inherit","open","open","","81-revision-3","","","2012-09-14 03:10:38","2012-09-14 03:10:38","","81","http://www.livingimagephotography.com.au/81-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("817","1","2012-09-21 23:37:27","2012-09-21 23:37:27","Getting your professional image right is very important, and having a corporate headshot that mimics your image is just as important.\n\nWe take the time to create a host of different portrait poses and looks to achieve the exact representation that you wish to portray in your corporate headshot.\n\nOur corporate headshots can be simple plain white background, great for business cards and for clipping, or we can create more dynamic portraits that represent more personality and feel for your corporate image. Chat with us about your options.\n\nWe deliver your corporate headshots promptly, with all digital files colour corrected in super high resolution ready for print or digital publishing.\n\nWe cater for individuals or whole teams, on site or in our centrally located studios. Have a look through our corporate headshot gallery below and <a href=contact us[/intlink] for more information.","Corporate Headshots","","inherit","open","open","","77-autosave","","","2012-09-21 23:37:27","2012-09-21 23:37:27","","77","http://www.livingimagephotography.com.au/77-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("818","1","2012-09-21 08:30:35","2012-09-21 08:30:35","Getting your professional image right is very important, and having a corporate headshot that mimics your image is just as important.\n\nWe take the time to create a host of different portrait poses and looks to achieve the exact representation that you wish to portray in your corporate headshot.\n\nOur corporate headshots can be simple plain white background, great for business cards and for clipping, or we can create more dynamic portraits that represent more personality and feel for your corporate image. Chat with us about your options.\n\nWe deliver your corporate headshots promptly, with all digital files colour corrected in super high resolution ready for print or digital publishing.\n\nWe cater for individuals or whole teams, on site or in our centrally located studios. Have a look through our corporate headshot gallery below and [intlink id=\"183\" type=\"page\"]contact us[/intlink] for more information.","Corporate Headshots","","inherit","open","open","","77-revision-7","","","2012-09-21 08:30:35","2012-09-21 08:30:35","","77","http://www.livingimagephotography.com.au/77-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("819","1","2012-09-19 06:49:17","2012-09-19 06:49:17","<h3>Sydney</h3>\nGround Floor, Suite C1, 210 Willoughby Road, Crows Nest, NSW, 2065\nPhone: <strong>(02) 9967 3114</strong>\n<br />\n<strong>We are thrilled that you have chosen us to capture your portraits. We\'re sure you will enjoy your experience with us!</strong>\n\nPlease enter your details in the booking request form below, and we will be on contact with you very shortly.\n\n[gravityform id=1 title=false description=false]\n\n<em><strong>Please note, we will do our best to accommodate your preferred date and time for your session, please be aware that we may be unavailable for your preference and will discuss suitable alternatives with you if need be.</strong></em>","Bookings","","inherit","open","open","","20-revision-6","","","2012-09-19 06:49:17","2012-09-19 06:49:17","","20","http://www.livingimagephotography.com.au/20-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("820","1","2012-09-15 09:44:27","2012-09-15 09:44:27","<h5>\'PLAY FAVORITE\' COMPETITION:</h5>\nEntry is open only to persons eighteen years and older, who are residents of Victoria or New South Wales and have <strong>not won a competition, prize or promotional item, through Living Image Photography in the last twelve months.</strong>\n\nTo enter, the completed online form must be received at the studio by the end of the promotion date. Entries not properly completed will be rejected. Late entries will not be accepted. Prize winners will be notified by mail, email or phone. The major prize winner will be the client with the most valid votes. The Major Prize winner will be entitled to up to $2000 worth of products from Living Image, to be redeemed from their recent session, to be used in one transaction, any unused balance will be forfeited. The Major Prize is valid for a period of three months from the date of notification. Consolation Prizes will have an expiry date printed on the Gift Certificate. Prizes are non transferable, not exchangeable or redeemable in whole or in part for any cash equivalent. Prizes cannot be used in conjunction with any other offer or promotion.\n<h5>APPOINTMENT HOLDING FEE/ DEPOSITS</h5>\n<strong>A holding fee / deposit of $50 will be required to secure and hold your appointment. This holding fee ensures your commitment to the scheduled appointment.</strong>\nThe holding fee / deposit will be returned to you at the presentation of the photographs following the photo shoot at the Ordering Session, provided that you have completed your appointment at the correctly scheduled time and date. Failure to attend or complete your scheduled appointment may result in the cancellation of any prize and the forfeiture of the holding fee at the sole discretion of studio management.\n<h5>GIFT CERTIFICATES/PROMOTIONAL VOUCHERS:</h5>\nMust be redeemed by the holder prior to the expiry date, provided the holder has not redeemed a Competition Prize, Gift Certificate or Promotional Voucher with Living Image Photography in the last 6 months (date calculated from the previous sitting date). Prizes are for domestic portraiture and can not be used for commercial photography.\n<h5>TRANSFERABLE:</h5>\nPromotional Vouchers and Gift Certificates <strong>ARE</strong> transferable to family or friends. They are not exchangeable or redeemable in whole or in part for any cash equivalent. The vouchers and gift certificates cannot be used in conjunction with any other offer, prize or promotion. Only one (1) Gift Certificate or Promotional voucher/certificate can be used at a time.  You cannot use the gift certificate or promotional voucher to purchase products from any other photo sessions.\n<h5>FACEBOOK COMPETITION:</h5>\nBy entering our Facebook competition, the entrant acknowledges that the promotion is in no way sponsored, endorsed, administered by or associated with, Facebook in any way.\n<h5>ARTISTIC CONTROL:</h5>\nLiving Image Photography reserves artistic control over the design and content of each photoshoot. We may, at our discretion, decline to create certain types or styles of photography. We reserve the right to refuse to produce images at some sizes or combinations of sizes if we believe such images would or could be detrimental to our reputation as a professional studio or as professional photographers.\n\n<strong>Clients should discuss their requirements with the studio prior to the photoshoot.</strong>\n<h5>APPOINTMENT RESCHEDULE POLICY:</h5>\n<strong>Gift Certificates and Promotional Vouchers entitle the holder to a SINGLE APPOINTMENT ONLY. Once made, an appointment can not be rescheduled and the Gift Certificate or Promotional Voucher is deemed to have been used in full at that original appointment time and date.</strong>\n\n*NOTE: In exceptional circumstances, management may, at their sole discretion, reschedule an appointment and carry forward the Gift Certificate and holding fee / deposit.\n<h5>NO SHOW POLICY:</h5>\nNon attendance (NO SHOW) at an appointment without notice, will result in the forfeiture of the holding / deposit fee. The Gift Certificate or Promotional Voucher is then deemed to have been used in full.<strong>Living Image Photography reserves the right to then charge the appointment holder the full Sitting Fee of $150 (less the $50 holding deposit).</strong>\n<h5>COPYRIGHT:</h5>\nUnrestricted Copyright to all images created during the photo shoot that forms part of the Gift Certificate or Promotional Voucher or Referral Voucher is deemed to belong solely to Living Image Photography.\n<h5>PRIVACY:</h5>\nBy commissioning Living Image Photography to create images or by entering any promotion or competition, clients and or entrants understand and agree that Living Image Photography may use the information provided by them in accordance with National Privacy Principles. <a href=\"http://www.privacy.gov.au/\" target=\"_blank\">http://www.privacy.gov.au</a>","Terms and Conditions","","inherit","open","open","","573-revision-3","","","2012-09-15 09:44:27","2012-09-15 09:44:27","","573","http://www.livingimagephotography.com.au/573-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("821","1","2012-09-19 04:35:00","2012-09-19 04:35:00","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Albums","","inherit","open","open","","578-revision-22","","","2012-09-19 04:35:00","2012-09-19 04:35:00","","578","http://www.livingimagephotography.com.au/578-revision-22/","0","revision","","0");
INSERT INTO wp_posts VALUES("822","1","2012-09-18 06:54:46","2012-09-18 06:54:46","A beautifully designed hand-made canvas box including image-wrap for spine and front cover & one desktop mini-easel; forming a timeless memorable time capsule to be treasured through many lifetimes.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><h6>Collections Box</h6><img class=\"alignleft size-full wp-image-590\" title=\"Collections Box\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThis is a beautiful way to keep your treasured portraits, your collections box consists of your favourite 10 images from your portrait session, which are individually mounted behind an 11x14inch framers mount. This is a popular display option.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><strong>[take a closer look here]</strong></a>\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/MountedPortraits\" target=\"_blank\"><h6>Mounted Portraits</h6><img class=\"alignleft size-full wp-image-590\" title=\"Mounted Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/MountedPortraits_thumbs.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nam tempor auctor aliquet. Ut quis felis et mi pellentesque mollis id a felis. Nullam eleifend, tellus at malesuada vulputate, dolor ipsum feugiat nisl, sit amet rhoncus arcu erat id mauris.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><strong>[take a closer look here]</strong></a>\n","Fine Art Collections Box","","inherit","open","open","","583-revision-5","","","2012-09-18 06:54:46","2012-09-18 06:54:46","","583","http://www.livingimagephotography.com.au/583-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("823","1","2012-09-18 05:30:07","2012-09-18 05:30:07","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><h6>Visage</h6><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><h6>Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Amour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\n1 large portrait, flanked on one side by two more portraits. This collection suits bedrooms and living areas, and is perfect for a couple\'s portrait or family portrait. The Amour is available in 2 finishes: Acrylic and ArtMount.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><h6>Plus D\'Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Plus D\'Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Plus\'DAmour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThis beautiful collection includes 5 portraits, with one main feature, surrounded by 4 complimentary portraits. The Plus D\'Amour will liven a medium to large living room, and even works beutifully in a master bedroom. It\'s perfectly suited to family portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><h6>Trois</h6><img class=\"alignleft size-full wp-image-590\" title=\"Trois\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Trois_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThe Trois is a great addition to any room, with three vertical panels and size options for 10inch to 40inch prints it\'s designed to suit all spaces. The Trois is the ideal choice for family portraits, children\'s portraits or couples, it makes a real statement.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><h6>Enjoue</h6><img class=\"alignleft size-full wp-image-590\" title=\"Enjoue\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Enjoue_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nFor a wonderful alternative to our Trois portrait collection, the Enjoue provides you with 1 landscape, or horizontal portrait flanked by a vertical portrait on each side. The Enjoue collection will make an amazing impact in your rooms, suited to medium and larger sized spaces.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><h6>Unique</h6><img class=\"alignleft size-full wp-image-590\" title=\"Unique\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Unique_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA Unique collection is our option for single portraits of any size. A wonderful option to make a blod statement with one large portrait. From our 10inch portraits up to our large \"sofa sized\" 40inch portraits the choice is yours!<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<h1>Finishes</h1>\n\nWe have a range of alternative finishes for your portraits that are available on most of our collections. Our range of finishes are designed to suit any style of decor. \n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CanvasPortraits.jpg\" target=\"_blank\"><h6>Canvas</h6><img class=\"alignleft size-full wp-image-590\" title=\"Canvas Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Canvas_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nContemporary and timeless, our canvas finish is a brilliant way to display your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CanvasPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ArtMountPortraits.jpg\" target=\"_blank\"><h6>Art Mount</h6><img class=\"alignleft size-full wp-image-590\" title=\"Art Mount Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Art-Mount_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA great alternative finish for your portraits, perfect for a large collection of portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ArtMountPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/AcrylicPortraits.jpg\" target=\"_blank\"><h6>Acrylic</h6><img class=\"alignleft size-full wp-image-590\" title=\"Acrylic Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Acrylic_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA unique and contemporary display option for your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/AcrylicPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FramedPortraits.jpg\" target=\"_blank\"><h6>Framed</h6><img class=\"alignleft size-full wp-image-590\" title=\"Framed Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Framed-Portraits_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nStunning, traditional and timeless framing finishes for your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FramedPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>","Fine Art Decor","","inherit","open","open","","580-revision-14","","","2012-09-18 05:30:07","2012-09-18 05:30:07","","580","http://www.livingimagephotography.com.au/580-revision-14/","0","revision","","0");
INSERT INTO wp_posts VALUES("824","1","2012-09-22 01:07:19","2012-09-22 01:07:19","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><h6>Visage</h6><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><h6>Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Amour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\n1 large portrait, flanked on one side by two more portraits. This collection suits bedrooms and living areas, and is perfect for a couple\'s portrait or family portrait. The Amour is available in 2 finishes: Acrylic and ArtMount.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><h6>Plus D\'Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Plus D\'Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Plus\'DAmour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\nThis beautiful collection includes 5 portraits, with one main feature, surrounded by 4 complimentary portraits. The Plus D\'Amour will liven a medium to large living room, and even works beutifully in a master bedroom. It\'s perfectly suited to family portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><h6>Trois</h6><img class=\"alignleft size-full wp-image-590\" title=\"Trois\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Trois_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThe Trois is a great addition to any room, with three vertical panels and size options for 10inch to 40inch prints it\'s designed to suit all spaces. The Trois is the ideal choice for family portraits, children\'s portraits or couples, it makes a real statement.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><h6>Enjoue</h6><img class=\"alignleft size-full wp-image-590\" title=\"Enjoue\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Enjoue_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nFor a wonderful alternative to our Trois portrait collection, the Enjoue provides you with 1 landscape, or horizontal portrait flanked by a vertical portrait on each side. The Enjoue collection will make an amazing impact in your rooms, suited to medium and larger sized spaces.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><h6>Unique</h6><img class=\"alignleft size-full wp-image-590\" title=\"Unique\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Unique_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA Unique collection is our option for single portraits of any size. A wonderful option to make a blod statement with one large portrait. From our 10inch portraits up to our large \"sofa sized\" 40inch portraits the choice is yours!<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<h1>Finishes</h1>\n\nWe have a range of alternative finishes for your portraits that are available on most of our collections. Our range of finishes are designed to suit any style of decor. \n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CanvasPortraits.jpg\" target=\"_blank\"><h6>Canvas</h6><img class=\"alignleft size-full wp-image-590\" title=\"Canvas Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Canvas_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nContemporary and timeless, our canvas finish is a brilliant way to display your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CanvasPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ArtMountPortraits.jpg\" target=\"_blank\"><h6>Art Mount</h6><img class=\"alignleft size-full wp-image-590\" title=\"Art Mount Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Art-Mount_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA great alternative finish for your portraits, perfect for a large collection of portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ArtMountPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/AcrylicPortraits.jpg\" target=\"_blank\"><h6>Acrylic</h6><img class=\"alignleft size-full wp-image-590\" title=\"Acrylic Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Acrylic_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA unique and contemporary display option for your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/AcrylicPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FramedPortraits.jpg\" target=\"_blank\"><h6>Framed</h6><img class=\"alignleft size-full wp-image-590\" title=\"Framed Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Framed-Portraits_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nStunning, traditional and timeless framing finishes for your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FramedPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>","Fine Art Decor","","inherit","open","open","","580-revision-15","","","2012-09-22 01:07:19","2012-09-22 01:07:19","","580","http://www.livingimagephotography.com.au/580-revision-15/","0","revision","","0");
INSERT INTO wp_posts VALUES("826","1","2012-09-18 08:22:03","2012-09-18 08:22:03","<strong>A portrait experience from us is the perfect gift for a friend or a loved one.</strong> We have beautifully presented gift certificates available, that can also be personalised with a message from you. Please call the studio to organise your gift certificate over the phone. We will express post it to you so you have it as soon as possible, or you are welcome to pop into the studio and collect it in person.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><h6>Gift Certificates</h6><img class=\"alignleft size-full wp-image-590\" title=\"Gift Certificates\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate_thumbs.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>Our gift certificates are beautifully printed on heavy card stock, creased and sealed with a bow at the back. The gift certificates are personalised with your name, the recipients and a message if you wish. Certificates are available in any amount you wish.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>","Gifts","","inherit","open","open","","587-revision-4","","","2012-09-18 08:22:03","2012-09-18 08:22:03","","587","http://www.livingimagephotography.com.au/587-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("827","1","2012-09-18 23:33:39","2012-09-18 23:33:39","Depending on the type of look and feel you are looking for with your portraits, we will determine what clothing options will work best for you. At the time of your booking, we will discuss with you, the best clothing options for you and your family.  However, here are a few great tips to get you started….\n\n<em>Hair and Make-Up</em>\n\nYour hair and make-up should also be worn as you would normally wear it. However, do take a moment to have a look at everyone’s hair; is anyone due for a hair cut or colour? If so, make sure you book them in before your session. We want to capture images of the real you, so no need to go over the top with make-up if you don’t normally wear it.  We retouch all of the work that you purchase, so if there is something that you’re not entirely happy with in your complexion then we can fix it.\n\n<em>What to wear</em>\n\nIt is important that you feel comfortable in whatever it is that you decide to wear, because if you feel good you will look good.\n\nAs a rule of thumb, smart casual is the best way to go. Guys look great in collared shirts, long flowing dresses look stunning on the girls and little kids look great in bright colours. Don’t be afraid to mix it up a bit.\n\nKeep in mind what everybody is wearing to maintain harmony with the overall look, but more importantly steer away from heavy stripes, spots or large logos. Try not to have an exact match of clothing for everyone unless you particularly wish to theme the images.  Instead, use similar colours in the clothing for everyone - two to three co-ordinated colours work best.\n\nConsider your finger nails and toe nails (if you’re wearing open toed footwear), prepare them in line with your own personal style. If you wear glasses, be sure to bring a pair with clear lenses.\n\nDon’t be worried if you don’t have a wardrobe that rivals the celebrities, sometimes the simplest of clothing can be the most effective. But do make sure all your clothes are clean and pressed. It’s important for everyone to wear flattering clothing that fits correctly.\n\nFeel free to bring a couple of out fits to your session; your photographer will help you choose the most appropriate one. It also gives you the opportunity to mix it up a little bit, you can change clothing half way through your session to add some additional variety to your shots.\n\n<em>Getting the kids ready</em>\n\nLittle ones can sometimes be the trickiest to prepare for a photo session. They quickly pick up on stress and may become nervous, so always keep it fun and don’t rehearse the sitting.\n\nWhen booking your session keep in mind your children’s sleep times. No one likes to smile and have fun when they are tired and ready for a nap.\n\nMake sure you arrive at your session early to give your child time to get to know your photographer and used to their new surroundings. During the session if you want to help with making them smile, it works really well when parents stand behind the photographer so young ones look in the direction of the camera when you’re calling for their attention.\n\nBring along their favourite toy, this can add an extra level of sentiment to your photographs.","Prepairing for your session","","inherit","open","open","","545-revision-4","","","2012-09-18 23:33:39","2012-09-18 23:33:39","","545","http://www.livingimagephotography.com.au/545-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("828","1","2012-09-26 05:03:01","2012-09-26 05:03:01","Depending on the type of look and feel you are looking for with your portraits, we will determine what clothing options will work best for you. At the time of your booking, we will discuss with you, the best clothing options for you and your family.  However, here are a few great tips to get you started….\n\n<strong><em>Hair and Make-Up</em></strong>\n\nYour hair and make-up should also be worn as you would normally wear it. However, do take a moment to have a look at everyone’s hair; is anyone due for a hair cut or colour? If so, make sure you book them in before your session. We want to capture images of the real you, so no need to go over the top with make-up if you don’t normally wear it.  We retouch all of the work that you purchase, so if there is something that you’re not entirely happy with in your complexion then we can fix it.\n\n<strong><em>What to wear</em></strong>\n\nIt is important that you feel comfortable in whatever it is that you decide to wear, because if you feel good you will look good.\n\nAs a rule of thumb, smart casual is the best way to go. Guys look great in collared shirts, long flowing dresses look stunning on the girls and little kids look great in bright colours. Don’t be afraid to mix it up a bit.\n\nKeep in mind what everybody is wearing to maintain harmony with the overall look, but more importantly steer away from heavy stripes, spots or large logos. Try not to have an exact match of clothing for everyone unless you particularly wish to theme the images.  Instead, use similar colours in the clothing for everyone - two to three co-ordinated colours work best.\n\nConsider your finger nails and toe nails (if you’re wearing open toed footwear), prepare them in line with your own personal style. If you wear glasses, be sure to bring a pair with clear lenses.\n\nDon’t be worried if you don’t have a wardrobe that rivals the celebrities, sometimes the simplest of clothing can be the most effective. But do make sure all your clothes are clean and pressed. It’s important for everyone to wear flattering clothing that fits correctly.\n\nFeel free to bring a couple of out fits to your session; your photographer will help you choose the most appropriate one. It also gives you the opportunity to mix it up a little bit, you can change clothing half way through your session to add some additional variety to your shots.\n\n<strong><em>Getting the kids ready</em></strong>\n\nLittle ones can sometimes be the trickiest to prepare for a photo session. They quickly pick up on stress and may become nervous, so always keep it fun and don’t rehearse the sitting.\n\nWhen booking your session keep in mind your children’s sleep times. No one likes to smile and have fun when they are tired and ready for a nap.\n\nMake sure you arrive at your session early to give your child time to get to know your photographer and used to their new surroundings. During the session if you want to help with making them smile, it works really well when parents stand behind the photographer so young ones look in the direction of the camera when you’re calling for their attention.\n\nBring along their favorite toy, this can add an extra level of sentiment to your photographs.\n\n<strong><em>Animals</em></strong>\n\nWE all want our animals to look their best for their moment in the spot light. However, it is not necessary to have them groomed in the days leading up to the shoot, however, if you prefer to do this- Great! Personalize your shoot- bring along your pets favorite toys to be incorporated into some of the photographs. Of course, we have our own collection of toys in studio as well! Please bring along your pet\'s favorite treats to the session as well!\n\nAt this point, it is a good idea to ask yourself; Would you like to be in same of the photographs? Are there particular personality shots you would like us to capture? How were you thinking to display your Fine Art around your home?","Prepairing for your session","","inherit","open","open","","545-autosave","","","2012-09-26 05:03:01","2012-09-26 05:03:01","","545","http://www.livingimagephotography.com.au/545-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("829","1","2012-09-22 01:29:52","2012-09-22 01:29:52","Depending on the type of look and feel you are looking for with your portraits, we will determine what clothing options will work best for you. At the time of your booking, we will discuss with you, the best clothing options for you and your family.  However, here are a few great tips to get you started….\n\n<em>Hair and Make-Up</em>\n\nYour hair and make-up should also be worn as you would normally wear it. However, do take a moment to have a look at everyone’s hair; is anyone due for a hair cut or colour? If so, make sure you book them in before your session. We want to capture images of the real you, so no need to go over the top with make-up if you don’t normally wear it.  We retouch all of the work that you purchase, so if there is something that you’re not entirely happy with in your complexion then we can fix it.\n\n<em>What to wear</em>\n\nIt is important that you feel comfortable in whatever it is that you decide to wear, because if you feel good you will look good.\n\nAs a rule of thumb, smart casual is the best way to go. Guys look great in collared shirts, long flowing dresses look stunning on the girls and little kids look great in bright colours. Don’t be afraid to mix it up a bit.\n\nKeep in mind what everybody is wearing to maintain harmony with the overall look, but more importantly steer away from heavy stripes, spots or large logos. Try not to have an exact match of clothing for everyone unless you particularly wish to theme the images.  Instead, use similar colours in the clothing for everyone - two to three co-ordinated colours work best.\n\nConsider your finger nails and toe nails (if you’re wearing open toed footwear), prepare them in line with your own personal style. If you wear glasses, be sure to bring a pair with clear lenses.\n\nDon’t be worried if you don’t have a wardrobe that rivals the celebrities, sometimes the simplest of clothing can be the most effective. But do make sure all your clothes are clean and pressed. It’s important for everyone to wear flattering clothing that fits correctly.\n\nFeel free to bring a couple of out fits to your session; your photographer will help you choose the most appropriate one. It also gives you the opportunity to mix it up a little bit, you can change clothing half way through your session to add some additional variety to your shots.\n\n<em>Getting the kids ready</em>\n\nLittle ones can sometimes be the trickiest to prepare for a photo session. They quickly pick up on stress and may become nervous, so always keep it fun and don’t rehearse the sitting.\n\nWhen booking your session keep in mind your children’s sleep times. No one likes to smile and have fun when they are tired and ready for a nap.\n\nMake sure you arrive at your session early to give your child time to get to know your photographer and used to their new surroundings. During the session if you want to help with making them smile, it works really well when parents stand behind the photographer so young ones look in the direction of the camera when you’re calling for their attention.\n\nBring along their favourite toy, this can add an extra level of sentiment to your photographs.","Prepairing for your session","","inherit","open","open","","545-revision-5","","","2012-09-22 01:29:52","2012-09-22 01:29:52","","545","http://www.livingimagephotography.com.au/545-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("830","1","2012-09-15 06:23:08","2012-09-15 06:23:08","This is the FUN part!\n\nYou will spend up to 1 and ½ hour with your photographer in our studio capturing beautiful photographs based on the plan we made during your consultation. We will shoot a great variety of images to make building your artwork easy and fun.\n\nOur photographers have many years of experience in portrait photography; they are fantastic with making the shyest of people feel relaxed and comfortable. All you need to do is relax, have fun and enjoy the experience with your loved ones.\n\nShortly after your session you will enjoy your ordering session, which is just as much fun as your shoot.\n","Your portrait session","","inherit","open","open","","547-revision-2","","","2012-09-15 06:23:08","2012-09-15 06:23:08","","547","http://www.livingimagephotography.com.au/547-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("831","1","2012-09-22 01:36:29","2012-09-22 01:36:29","This is the FUN part!\n\nYou will spend up to 1 and ½ hour with your photographer in our studio capturing beautiful photographs based on the plan we made during your consultation. We will shoot a great variety of images to make building your artwork easy and fun.\n\nOur photographers have many years of experience in portrait photography; they are fantastic with making the shyest of people feel relaxed and comfortable. All you need to do is relax, have fun and enjoy the experience with your loved ones.\n\nShortly after your session you will enjoy your ordering session, which is just as much fun as your shoot.\n","Your portrait session","","inherit","open","open","","547-revision-3","","","2012-09-22 01:36:29","2012-09-22 01:36:29","","547","http://www.livingimagephotography.com.au/547-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("832","1","2012-09-15 06:36:14","2012-09-15 06:36:14","Now it’s time for you to see the collection of your wonderful images from your photo shoot.\n\nOur trained designers will walk you through your images and once you have chosen your favourites they will help you choose the best display options. There are lots of different options, so we are sure we have at least one that you will love.\n\nIf there is a special spot in the house where you would like to hang your images, feel free (in fact we encourage you) to bring in a digital image of this space. We can use this image to show you exactly how your chosen collection will look on your wall at home – to scale, and in your desired finish. This takes out all the guess work, it will ensure you feel happy and comfortable with the look of your new artwork.","Your viewing and ordering session","","inherit","open","open","","550-revision-2","","","2012-09-15 06:36:14","2012-09-15 06:36:14","","550","http://www.livingimagephotography.com.au/550-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("833","1","2012-09-15 06:47:29","2012-09-15 06:47:29","This is the BEST part.\n\nCollecting your order is the most reward step of all. Every image that is ordered is carefully retouched and enhanced to ensure the highest of image quality. Your finished piece of art not only looks good but will last a life time – we guarantee it for life.\n\nOnce you have it proudly displayed in your home, you will be the envy of all of your friends. There is no better way to make a house a home then with beautiful warm images of your loved ones.","Collecting your order","","inherit","open","open","","552-revision-2","","","2012-09-15 06:47:29","2012-09-15 06:47:29","","552","http://www.livingimagephotography.com.au/552-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("834","1","2012-09-18 23:40:41","2012-09-18 23:40:41","An important part of the process is the cost. We feel it’s important that you receive the most value for your investment, and whatever you decide to purchase fits within your budget. We encourage you to feel comfortable with your order.\n\nAll of the work that we produce for you is finished artwork, ready to hang or display, and comes with a life time guarantee. With this in mind here is a guide to our pricing.\n\nOur portrait fee is $150, which includes;\n<ul>\n	<li>Your pre portrait consultation in our studio or on the phone (allow 30mins),</li>\n	<li>Your creative portrait session, in our studio (allow an hour and a half),</li>\n	<li>and your ordering session, in our studio (allow up to 2 hours)</li>\n</ul>\nWe aim to capture anywhere between 40 to 100 <em><span style=\"text-decoration: underline;\">different</span></em> images during your portrait session. We will take you through the whole collection during your ordering session for you to select your absolute favourites.\n\nOur 10 inch matted portraits start from as little as $195. We have a whole range display options to suit all price points and budgets. Our display options include;\n<ul>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/fine-art-decor/\">Wall Portraits &amp; Collections</a></li>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/fine-art-albums/\">Hand Bound Albums &amp; Story Books</a></li>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/fine-art-collections-box/\">Desktop Portraits &amp; Matted Prints</a></li>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/gifts/\">Gift Certificates for your friends and loved ones</a></li>\n</ul>\n<span style=\"color: #ff0000;\">Take this opportunity to <a href=\"http://www.livingimagephotography.com.au/bookings/\">book your session now</a>, and start this exciting journey.</span>","Pricing","","inherit","open","open","","15-revision-5","","","2012-09-18 23:40:41","2012-09-18 23:40:41","","15","http://www.livingimagephotography.com.au/15-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("835","1","2012-09-15 08:34:05","2012-09-15 08:34:05","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\">[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met</p>\n<br />\n<p style=\"text-align: right;\"><strong>-Michelle Matthewman </strong></p>[/quote]\n<p style=\"text-align: left;\">[quote]The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\n<br />\n<p style=\"text-align: right;\"><strong>- James &amp; Kristen Green </strong></p>[/quote]\n[quote]Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n<p style=\"text-align: right\";><strong>Cheers,\n</strong><strong>Jen Drysdale</strong></p>[/quote]\n\n[quote]Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinely had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thank you Simon.\n<p style=\"text-align: right\";><strong>-Maureen Wills </strong></p>[/quote]\n\n[quote]Dear Simon and Amy,\n\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\n\n\n<p style=\"text-align:right\";><strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></p>[/quote]\n\n[quote]I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\n<p style=\"text-align: right\";><strong>-Carly Hansen</strong></p>[/quote]\n\n[quote]Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\n<strong>See it here</strong>&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\"><h6>The Strands Of Me</h6></a> </em>[/quote]\n\n[quote]Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<p style=\"text-align: right\";><strong>Cheers\nJess and Ben</strong>[/quote]\n\n[quote]DAVID IS AWESOME!!!\nWe had a great time, it was relaxed, comfortable and the location of the photo shoot was wonderful! David was great with the kids, he has a wonderful personality which allowed us to feel welcomed and be ourselves! Emily and David you are both wonderful professionals who made us feel more like friends than clients…</em></em>\n\nGood luck for the future\n\n<p style=\"text-align: right\";><strong>Kind Regards,\nKatine, Evan, Ecrini, Nickolas and Stavros Maounis</strong></p>\n\n\nPS – Emily was awesome too xx[/quote]\n\n[quote]What a fantastic experience!\n\n<em><em>On our way driving to our ‘photo shoot’ we were starting to think ‘What are we doing?’ thinking we would be too anxious and self conscious. All that went out of the window within minutes of meeting David. We had so much fun and it showed in the photos – which are so BEAUTIFUL! We have wonderful memories of the day too (we’ll never forget the ‘Drunken Scotsman dance’!). Thank-you so much Emily for your enthusiasm and patience… ‘Emily show us that one again, and that one, no that one – and can you show us them all again??’ Such a wonderful time and lovely photos to keep forever!\n\n<p style=\"text-align: right\";><strong>See you next time,\nNatalie and Ewen Gibb</strong></p>[/quote]\n\n[quote]Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderful photos had been captured of our ugly mugs!\n\n<p style=\"text-align: right\";><strong>Thanks again,\nAnne and Owen Kruger</strong></p>[/quote]\n\n\n[quote]We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\nIt was a great day – one I would recommend to anyone\n\n<p style=\"text-align: right\";><strong>Thanks so much,\nSimone Faulkner</strong></p>[/quote]\n\n\n\n[quote]Thanks guys for a great experience\n\nIt was the first family shoot for the grandparents, but David was very patient with everyone and kept everyone nice and relaxed. The pictures turned out amazing with lots of creative shoots. Thanks again for the opportunity to capture our little bubs and the free gift is lovely\n\n<p style=\"text-align: right\";><strong>Elson &amp; Karen Goh</p></strong>[/quote]\n\n\n[quote]David and Emily.\n\nOur photos are just amazing. We will never forget the great work that you guys have done. I will be recommending you to everyone in my community. It was great fun working with you guys. We wish you great luck for an everlasting success.\n\n<p style=\"text-align: right\";><strong>Shekhar, Vaishali and Shanti</strong></p>[/quote]\n\n[quote]Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!\n\n<p style=\"text-align: right\";><strong>The Trusso Family</strong></p>[/quote]\n\n\n\n[quote]Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! \n\n<p style=\"text-align:right\";><strong>Herman and Sol</strong></p>[/quote]\n\n[quote]Great photos! Great Service! Very professional people, very happy with everything! \n\n<p style=\"text-align: right\";><strong>Thanks\nHenneker Family</strong></p>[/quote]\n\n[quote]Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!\n\n<p style=\"text-align:right\";><strong>Mohamed Family</strong></p>[/quote]\n\n[quote]Hey guys!\n\nThank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.\n\n<strong><p style=\"text-align: right\";>Cheers,\nRobert Hart</strong></p>[/quote]\n\n[quote]Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.\n\n<p style=\"text-align: right\";><strong>Lyn and Rocco</p></strong>[/quote]\n\n[quote]A very pleasant experience. Living Image was very professional and accommodating.\n\n<p style=\"text-align:right\";><strong>Marty</p></strong>[/quote]\n\n[quote]We had a good time, very professional and friendly people.\n\n<strong><p style=\"text-align:right\";>Thank-you.\nJorge and Aracely</strong></p>[/quote]\n\n[quote]Excellent posing and lighting effects. Friendly and most accommodations. Great presentation in an environment that was relaxing and professional.\n\nVery impressed with finished product and  good manners from Emily and David.\n\n<p style=\"text-align:right\";><strong>Most Appreciated,\nJill and Paul Bronson</strong></p>[/quote]\n\n[quote]Very Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n\n<p style=\"text-align:right\";><strong>Edward Rynne</strong>[/quote]\n\n[quote]Thanks, great photos. Pleasant experience.\n\n<p style=\"text-align: right\";><strong>John and Antonella Calabrese</p></strong>[/quote]\n\n[quote]We’re very happy with the photos.\n\n<strong><p style=\"text-align\";>good job,\nHenry and Patricia Adie-Cooper</strong></p>[/quote]\n\n[quote]Thanks! Brilliant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n\n<p style=\"text-align: right\";><strong>Elaine and Noel Walters</strong></p>[/quote]\n\n[quote]We had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\n<strong><p style=\"text-align: right\";>Thanks,\nDerek Wall</strong></p>[/quote]\n\n[quote]A very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. \n\n<strong><p style=\"text-align: right\";>Thank-you,\nOtto and Jeannie Ashboth</strong></p>[/quote]\n\n[quote]Thanks for the fantastic photos and for being so patient handling all the young children.\n\n<p style=\"text-align: right\";><strong>Don</strong></p>[/quote]\n\n[quote]The photo session was excellent, Point Walter is so beautiful and David took time to choose the best place for us. Everyone was very helpful. Beautiful photo. Thank-you very much.\n\n<p style=\"text-align: right\";><strong>Rose</strong></p>[/quote]\n\n[quote]Both David and Emily have been great in the service provided as well as their friendliness and being very helpful in every possible way.\n\n<p style=\"text-align: right\";><strong>Ian Ong</strong></p>[/quote]\n\n[quote]Working with teenagers can be a difficult thing, especially when they are not willing participants in the task at hand. But David did a splendid job and our photo is testimony to that. Thank-you for the opportunity to participate.\n\n<p style=\"text-align: right\";><strong>Helen Westcott</strong></p>[/quote]\n\n[quote]Lovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\n<strong><p style=\"text-align: right\";>Many thanks,\nBeryl Price</p></strong>[/quote]\n\n[quote]Very, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\n<strong><p style=\"text-align:right\";>Thanks,\nDionne Smith and family</p></strong>[/quote]\n\n[quote]Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\n<strong><p style=\"text-align: right\";>Thank you,\nJohn Garbin and family </p></strong>[/quote]\n\n[quote]The photos are gorgeous, we had a lot of fun at the river and David made Kyra feel completely at ease.\n\n<strong><p style=\"text-align: right\";>Thank-you,\nChristine, Mal and Kyra</p></strong>[/quote]\n\n[quote]Thank you David and Emily\n\nOur family enjoyed the photo shoot, the professional approach to the job, but the friendly and relaxing time we spent with you. The photos are superb and we will enjoy them till we can’t see any more!\n\nVery best wishes to you both…. \n\n<strong><p style=\"text-align: right\";>Bev Flockart</p></strong>[/quote]\n\n[quote]Thanks so much Emily and David for making me feel so comfortable during the shoot. We all enjoyed ourselves thoroughly. So THANKS!\n\n<strong><p style=\"text-align: right\";>Pamela</p></strong>[/quote]","Testimonials","","inherit","open","open","","18-revision-12","","","2012-09-15 08:34:05","2012-09-15 08:34:05","","18","http://www.livingimagephotography.com.au/18-revision-12/","0","revision","","0");
INSERT INTO wp_posts VALUES("836","1","2012-09-20 04:31:31","2012-09-20 04:31:31","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" style=\"float:left\"></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" style=\"float:right\"></a>\n\n","Shoot the Dog","","inherit","open","open","","656-revision-38","","","2012-09-20 04:31:31","2012-09-20 04:31:31","","656","http://www.livingimagephotography.com.au/656-revision-38/","0","revision","","0");
INSERT INTO wp_posts VALUES("842","1","2012-09-22 04:44:06","2012-09-22 04:44:06","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <h6>-Simon Carroll</h6> \n[/quote]\n<br />\n\n<div align=\"center\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" />\n</div>","Welcome","","inherit","open","open","","6-revision-34","","","2012-09-22 04:44:06","2012-09-22 04:44:06","","6","http://www.livingimagephotography.com.au/6-revision-34/","0","revision","","0");
INSERT INTO wp_posts VALUES("843","1","2012-09-22 04:45:47","2012-09-22 04:45:47","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <h6>-Simon Carroll</h6> \n[/quote]\n<br />\n<hr />\n\n<div align=\"center\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" />\n</div>","Welcome","","inherit","open","open","","6-revision-35","","","2012-09-22 04:45:47","2012-09-22 04:45:47","","6","http://www.livingimagephotography.com.au/6-revision-35/","0","revision","","0");
INSERT INTO wp_posts VALUES("844","1","2012-09-22 04:52:53","2012-09-22 04:52:53","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <h6>-Simon Carroll</h6> \n[/quote]\n<br />\n<hr />\n\n<div align=\"center\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb2.jpg\" />\n</div>","Welcome","","inherit","open","open","","6-revision-36","","","2012-09-22 04:52:53","2012-09-22 04:52:53","","6","http://www.livingimagephotography.com.au/6-revision-36/","0","revision","","0");
INSERT INTO wp_posts VALUES("845","1","2012-09-22 05:56:41","2012-09-22 05:56:41","[gravityform id=2 title=false description=true]","Gift Certificate Order Form","","publish","open","open","","gift-certificate-order-form","","","2012-10-10 06:56:29","2012-10-10 06:56:29","","0","http://www.livingimagephotography.com.au/?page_id=845","0","page","","0");
INSERT INTO wp_posts VALUES("846","1","2012-09-22 05:48:47","2012-09-22 05:48:47","[gravityform id=1 title=false description=true]","Gift Certificate Order Form","","inherit","open","open","","845-revision","","","2012-09-22 05:48:47","2012-09-22 05:48:47","","845","http://www.livingimagephotography.com.au/845-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("847","1","2012-09-22 05:56:47","2012-09-22 05:56:47","[gravityform id=2 title=false description=true]","Gift Certificate Order Form","","inherit","open","open","","845-autosave","","","2012-09-22 05:56:47","2012-09-22 05:56:47","","845","http://www.livingimagephotography.com.au/845-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("848","1","2012-09-22 06:00:00","2012-09-22 06:00:00","<strong>A portrait experience from us is the perfect gift for a friend or a loved one.</strong> We have beautifully presented gift certificates available, that can also be personalised with a message from you. Please call the studio to organise your gift certificate over the phone. We will express post it to you so you have it as soon as possible, or you are welcome to pop into the studio and collect it in person.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><h6>Gift Certificates</h6><img class=\"alignleft size-full wp-image-590\" title=\"Gift Certificates\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate_thumbs.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>Our gift certificates are beautifully printed on heavy card stock, creased and sealed with a bow at the back. The gift certificates are personalised with your name, the recipients and a message if you wish. Certificates are available in any amount you wish.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a><a href=\"http://www.livingimagephotography.com.au/gift-certificate-order-form/\"><strong>[order now!]</strong></a>","Gifts","","inherit","open","open","","587-autosave","","","2012-09-22 06:00:00","2012-09-22 06:00:00","","587","http://www.livingimagephotography.com.au/587-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("849","1","2012-09-22 01:26:26","2012-09-22 01:26:26","<strong>A portrait experience from us is the perfect gift for a friend or a loved one.</strong> We have beautifully presented gift certificates available, that can also be personalised with a message from you. Please call the studio to organise your gift certificate over the phone. We will express post it to you so you have it as soon as possible, or you are welcome to pop into the studio and collect it in person.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><h6>Gift Certificates</h6><img class=\"alignleft size-full wp-image-590\" title=\"Gift Certificates\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate_thumbs.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>Our gift certificates are beautifully printed on heavy card stock, creased and sealed with a bow at the back. The gift certificates are personalised with your name, the recipients and a message if you wish. Certificates are available in any amount you wish.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>","Gifts","","inherit","open","open","","587-revision-5","","","2012-09-22 01:26:26","2012-09-22 01:26:26","","587","http://www.livingimagephotography.com.au/587-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("850","1","2012-09-22 05:58:44","2012-09-22 05:58:44","<strong>A portrait experience from us is the perfect gift for a friend or a loved one.</strong> We have beautifully presented gift certificates available, that can also be personalised with a message from you. Please call the studio to organise your gift certificate over the phone. We will express post it to you so you have it as soon as possible, or you are welcome to pop into the studio and collect it in person.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><h6>Gift Certificates</h6><img class=\"alignleft size-full wp-image-590\" title=\"Gift Certificates\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate_thumbs.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>Our gift certificates are beautifully printed on heavy card stock, creased and sealed with a bow at the back. The gift certificates are personalised with your name, the recipients and a message if you wish. Certificates are available in any amount you wish.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a> <href=\"http://www.livingimagephotography.com.au/gift-certificate-order-form/\"><strong>[order now!]</strong></a>","Gifts","","inherit","open","open","","587-revision-6","","","2012-09-22 05:58:44","2012-09-22 05:58:44","","587","http://www.livingimagephotography.com.au/587-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("851","1","2012-09-22 06:00:12","2012-09-22 06:00:12","<strong>A portrait experience from us is the perfect gift for a friend or a loved one.</strong> We have beautifully presented gift certificates available, that can also be personalised with a message from you. Please call the studio to organise your gift certificate over the phone. We will express post it to you so you have it as soon as possible, or you are welcome to pop into the studio and collect it in person.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><h6>Gift Certificates</h6><img class=\"alignleft size-full wp-image-590\" title=\"Gift Certificates\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate_thumbs.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>Our gift certificates are beautifully printed on heavy card stock, creased and sealed with a bow at the back. The gift certificates are personalised with your name, the recipients and a message if you wish. Certificates are available in any amount you wish.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a><a href=\"http://www.livingimagephotography.com.au/gift-certificate-order-form/\"><strong>[order now!]</strong></a>","Gifts","","inherit","open","open","","587-revision-7","","","2012-09-22 06:00:12","2012-09-22 06:00:12","","587","http://www.livingimagephotography.com.au/587-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("852","1","2012-09-22 05:00:54","2012-09-22 05:00:54","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <h6>-Simon Carroll</h6> \n[/quote]\n<br />\n<hr />\n\n<div align=\"center\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" />\n</div>","Welcome","","inherit","open","open","","6-revision-37","","","2012-09-22 05:00:54","2012-09-22 05:00:54","","6","http://www.livingimagephotography.com.au/6-revision-37/","0","revision","","0");
INSERT INTO wp_posts VALUES("853","1","2012-09-22 06:01:15","2012-09-22 06:01:15","<strong>A portrait experience from us is the perfect gift for a friend or a loved one.</strong> We have beautifully presented gift certificates available, that can also be personalised with a message from you. Please call the studio to organise your gift certificate over the phone. We will express post it to you so you have it as soon as possible, or you are welcome to pop into the studio and collect it in person.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><h6>Gift Certificates</h6><img class=\"alignleft size-full wp-image-590\" title=\"Gift Certificates\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate_thumbs.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>Our gift certificates are beautifully printed on heavy card stock, creased and sealed with a bow at the back. The gift certificates are personalised with your name, the recipients and a message if you wish. Certificates are available in any amount you wish.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>&nbsp<a href=\"http://www.livingimagephotography.com.au/gift-certificate-order-form/\" target=\"_blank\"><strong>[order now!]</strong></a>","Gifts","","inherit","open","open","","587-revision-8","","","2012-09-22 06:01:15","2012-09-22 06:01:15","","587","http://www.livingimagephotography.com.au/587-revision-8/","0","revision","","0");
INSERT INTO wp_posts VALUES("855","1","2012-09-22 06:01:52","2012-09-22 06:01:52","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <h6>-Simon Carroll</h6> \n[/quote]\n<br />\n<hr />\n\n<div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div>","Welcome","","inherit","open","open","","6-revision-38","","","2012-09-22 06:01:52","2012-09-22 06:01:52","","6","http://www.livingimagephotography.com.au/6-revision-38/","0","revision","","0");
INSERT INTO wp_posts VALUES("871","1","2012-09-26 01:23:43","2012-09-26 01:23:43","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <font size=3 face=\"Signerica Fat\"><h6>-Simon Carroll</font>\n&nbsp; Photographer</h6>\n[/quote]\n<br />\n<hr />\n\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-46","","","2012-09-26 01:23:43","2012-09-26 01:23:43","","6","http://www.livingimagephotography.com.au/6-revision-46/","0","revision","","0");
INSERT INTO wp_posts VALUES("856","1","2012-09-25 08:30:42","2012-09-25 08:30:42","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <p style=\"font-style: exmouth;\"><h6>-Simon Carroll</h6></>\n[/quote]\n<br />\n<hr />\n\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n/* <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> */","Welcome","","inherit","open","open","","6-revision-39","","","2012-09-25 08:30:42","2012-09-25 08:30:42","","6","http://www.livingimagephotography.com.au/6-revision-39/","0","revision","","0");
INSERT INTO wp_posts VALUES("857","1","2012-09-25 08:36:14","2012-09-25 08:36:14","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <font size=3 face=\"Lucida Handwriting\"><h6>-Simon Carroll</h6></font>\n[/quote]\n<br />\n<hr />\n\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-40","","","2012-09-25 08:36:14","2012-09-25 08:36:14","","6","http://www.livingimagephotography.com.au/6-revision-40/","0","revision","","0");
INSERT INTO wp_posts VALUES("858","1","2012-09-25 08:38:55","2012-09-25 08:38:55","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <font size=3 face=\"Lucida Handwriting\"><h6>-Simon Carroll</h6></font><br />\n&nbsp; Photographer\n[/quote]\n<br />\n<hr />\n\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-41","","","2012-09-25 08:38:55","2012-09-25 08:38:55","","6","http://www.livingimagephotography.com.au/6-revision-41/","0","revision","","0");
INSERT INTO wp_posts VALUES("859","1","2012-09-25 08:39:26","2012-09-25 08:39:26","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <font size=3 face=\"Lucida Handwriting\"><h6>-Simon Carroll</h6></font><br />\n&nbsp; Photographer\n[/quote]\n<br />\n<hr />\n\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-42","","","2012-09-25 08:39:26","2012-09-25 08:39:26","","6","http://www.livingimagephotography.com.au/6-revision-42/","0","revision","","0");
INSERT INTO wp_posts VALUES("862","1","2012-09-25 08:57:13","2012-09-25 08:57:13","","what we’re up to","","trash","open","open","","what-were-up-to","","","2012-09-25 23:56:51","2012-09-25 23:56:51","","0","http://www.livingimagephotography.com.au/?page_id=862","0","page","","0");
INSERT INTO wp_posts VALUES("860","1","2012-09-25 08:41:48","2012-09-25 08:41:48","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <font size=3 face=\"Lucida Handwriting\"><h6>-Simon Carroll</h6></font>\n&nbsp; <strong><h6>Photographer</h6></strong>\n[/quote]\n<br />\n<hr />\n\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-43","","","2012-09-25 08:41:48","2012-09-25 08:41:48","","6","http://www.livingimagephotography.com.au/6-revision-43/","0","revision","","0");
INSERT INTO wp_posts VALUES("861","1","2012-09-25 08:47:07","2012-09-25 08:47:07","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <font size=3 face=\"Lucida Handwriting\"><h6>-Simon Carroll</font>\n&nbsp; <strong>Photographer</h6></strong>\n[/quote]\n<br />\n<hr />\n\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-44","","","2012-09-25 08:47:07","2012-09-25 08:47:07","","6","http://www.livingimagephotography.com.au/6-revision-44/","0","revision","","0");
INSERT INTO wp_posts VALUES("863","1","2012-09-25 08:53:47","2012-09-25 08:53:47","","Auto Draft","","inherit","open","open","","862-revision","","","2012-09-25 08:53:47","2012-09-25 08:53:47","","862","http://www.livingimagephotography.com.au/862-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("1036","1","2012-10-05 00:51:49","2012-10-05 00:51:49","","Home","","inherit","open","open","","1035-revision","","","2012-10-05 00:51:49","2012-10-05 00:51:49","","1035","http://www.livingimagephotography.com.au/1035-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("865","1","2012-09-25 08:57:13","2012-09-25 08:57:13","","what we’re up to","","inherit","open","open","","862-revision-2","","","2012-09-25 08:57:13","2012-09-25 08:57:13","","862","http://www.livingimagephotography.com.au/862-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("866","1","2012-09-25 23:57:45","2012-09-25 23:57:45","Portrait Category for Blog","","","publish","open","open","","what-were-up-to","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","0","http://www.livingimagephotography.com.au/?p=866","4","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("868","1","2012-09-22 02:52:18","2012-09-22 02:52:18","<br />\nThis weeks Pic of the Week goes to the beautiful mother, Sofia with her 7 month old daughter Isabella. Sofia &amp; Isabella came to our Northbridge Studio to have their Portrait Photography taken earlier this week. They blew us away with an ease behind the camera and a gentle nature. Photographer Simon Carroll captured this magnificent moment between mother and daughter... there is honestly not a more perfect embrace.\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/javelosa-1096-Edit-Edit.jpg\"><img class=\"alignnone size-full wp-image-940\" title=\"javelosa-1096-Edit-Edit\" src=\"http://www.livingimagephotography.com/wp-content/uploads/2012/08/javelosa-1096-Edit-Edit.jpg\" alt=\"\" width=\"361\" height=\"229\" /></a>","Pic of the week!","","inherit","open","open","","640-revision-7","","","2012-09-22 02:52:18","2012-09-22 02:52:18","","640","http://www.livingimagephotography.com.au/640-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("869","1","2012-09-26 00:00:38","2012-09-26 00:00:38","<br />\nThis weeks Pic of the Week goes to the beautiful mother, Sofia with her 7 month old daughter Isabella. Sofia &amp; Isabella came to our Northbridge Studio to have their Portrait Photography taken earlier this week. They blew us away with an ease behind the camera and a gentle nature. Photographer Simon Carroll captured this magnificent moment between mother and daughter... there is honestly not a more perfect embrace.\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/javelosa-1096-Edit-Edit.jpg\"><img class=\"alignnone size-full wp-image-940\" title=\"javelosa-1096-Edit-Edit\" src=\"http://www.livingimagephotography.com/wp-content/uploads/2012/08/javelosa-1096-Edit-Edit.jpg\" alt=\"\" width=\"361\" height=\"229\" /></a>","Pic of the week!","","inherit","open","open","","640-revision-8","","","2012-09-26 00:00:38","2012-09-26 00:00:38","","640","http://www.livingimagephotography.com.au/640-revision-8/","0","revision","","0");
INSERT INTO wp_posts VALUES("872","1","2012-09-26 03:04:59","2012-09-26 03:04:59","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[/quote]<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />\n<br />\n<hr />\n\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-47","","","2012-09-26 03:04:59","2012-09-26 03:04:59","","6","http://www.livingimagephotography.com.au/6-revision-47/","0","revision","","0");
INSERT INTO wp_posts VALUES("873","1","2012-09-22 01:46:29","2012-09-22 01:46:29","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120.\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" style=\"float:left\"></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" style=\"float:right\"></a>\n\n","Shoot the Dog","","inherit","open","open","","656-revision-39","","","2012-09-22 01:46:29","2012-09-22 01:46:29","","656","http://www.livingimagephotography.com.au/656-revision-39/","0","revision","","0");
INSERT INTO wp_posts VALUES("874","1","2012-09-26 03:11:13","2012-09-26 03:11:13","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120. <a href=\"http://shootthedog.com.au/book-now/\">Book Now!</a>\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" style=\"float:left\"></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" style=\"float:right\"></a>\n\n","Shoot the Dog","","inherit","open","open","","656-revision-40","","","2012-09-26 03:11:13","2012-09-26 03:11:13","","656","http://www.livingimagephotography.com.au/656-revision-40/","0","revision","","0");
INSERT INTO wp_posts VALUES("875","1","2012-09-26 03:49:14","2012-09-26 03:49:14","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120. <a href=\"http://shootthedog.com.au/book-now/\">>>Book Now!<<</a>\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" style=\"float:left\"></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" style=\"float:right\"></a>\n\n","Shoot the Dog","","inherit","open","open","","656-revision-41","","","2012-09-26 03:49:14","2012-09-26 03:49:14","","656","http://www.livingimagephotography.com.au/656-revision-41/","0","revision","","0");
INSERT INTO wp_posts VALUES("876","1","2012-09-22 01:02:57","2012-09-22 01:02:57","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/album.png\" alt=\"\" width=\"186\" height=\"286\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Albums","","inherit","open","open","","578-revision-23","","","2012-09-22 01:02:57","2012-09-22 01:02:57","","578","http://www.livingimagephotography.com.au/578-revision-23/","0","revision","","0");
INSERT INTO wp_posts VALUES("878","1","2012-09-26 04:16:37","2012-09-26 04:16:37","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><h6>Traditional Fine Art Albums</h6><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/portrait_alb1.jpg\" alt=\"\" width=\"\" height=\"\" /></a>\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><h6>Designer Magazine Albums</h6><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/designer_alb2.jpg\" alt=\"\" width=\"\" height=\"\" /></a>\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Albums","","inherit","open","open","","578-revision-25","","","2012-09-26 04:16:37","2012-09-26 04:16:37","","578","http://www.livingimagephotography.com.au/578-revision-25/","0","revision","","0");
INSERT INTO wp_posts VALUES("877","1","2012-09-26 04:12:04","2012-09-26 04:12:04","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/portrait_alb1.jpg\" alt=\"\" width=\"\" height=\"\" /></a><h6>Traditional Fine Art Albums</h6>\n<br />\nA stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/designer_alb1.jpg\" alt=\"\" width=\"\" height=\"\" /></a><h6>Designer Magazine Albums</h6>\n<br />\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Albums","","inherit","open","open","","578-revision-24","","","2012-09-26 04:12:04","2012-09-26 04:12:04","","578","http://www.livingimagephotography.com.au/578-revision-24/","0","revision","","0");
INSERT INTO wp_posts VALUES("1035","1","2012-10-05 00:53:02","2012-10-05 00:53:02","","Home","","publish","open","open","","home-2","","","2012-10-09 02:00:07","2012-10-09 02:00:07","","0","http://www.livingimagephotography.com.au/?page_id=1035","0","page","","0");
INSERT INTO wp_posts VALUES("880","1","2012-09-26 04:23:29","2012-09-26 04:23:29","","Animal Portraits","","publish","open","open","","animals","","","2012-10-09 04:43:48","2012-10-09 04:43:48","","8","http://www.livingimagephotography.com.au/?page_id=880","0","page","","0");
INSERT INTO wp_posts VALUES("881","1","2012-09-26 04:23:06","2012-09-26 04:23:06","","Animals","","inherit","open","open","","880-revision","","","2012-09-26 04:23:06","2012-09-26 04:23:06","","880","http://www.livingimagephotography.com.au/880-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("882","1","2012-09-26 04:31:22","2012-09-26 04:31:22"," ","","","publish","open","open","","882","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","8","http://www.livingimagephotography.com.au/?p=882","19","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("883","1","2012-09-22 01:39:49","2012-09-22 01:39:49","Now it’s time for you to see the collection of your wonderful images from your photo shoot.\n\nOur trained designers will walk you through your images and once you have chosen your favourites they will help you choose the best display options. There are lots of different options, so we are sure we have at least one that you will love.\n\nIf there is a special spot in the house where you would like to hang your images, feel free (in fact we encourage you) to bring in a digital image of this space. We can use this image to show you exactly how your chosen collection will look on your wall at home – to scale, and in your desired finish. This takes out all the guess work, it will ensure you feel happy and comfortable with the look of your new artwork.","Your viewing and ordering session","","inherit","open","open","","550-revision-3","","","2012-09-22 01:39:49","2012-09-22 01:39:49","","550","http://www.livingimagephotography.com.au/550-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("884","1","2012-09-26 04:32:36","2012-09-26 04:32:36","Now it’s time for you to see the collection of your wonderful images from your photo shoot.\n\nOur trained designers will walk you through your images and once you have chosen your favourites they will help you choose the best display options. There are lots of different options, so we are sure we have at least one that you will love.\n\nIf there is a special spot in the house where you would like to hang your images, feel free (in fact we encourage you) to bring in a digital image of this space. We can use this image to show you exactly how your chosen collection will look on your wall at home – to scale, and in your desired finish. This takes out all the guess work, it will ensure you feel happy and comfortable with the look of your new artwork.","Design Consulation","","inherit","open","open","","550-revision-4","","","2012-09-26 04:32:36","2012-09-26 04:32:36","","550","http://www.livingimagephotography.com.au/550-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("885","1","2012-09-22 01:36:52","2012-09-22 01:36:52","This is the FUN part!\n\nYou will spend up to 1 and ½ hour with your photographer in our studio capturing beautiful photographs based on the plan we made during your consultation. We will shoot a great variety of images to make building your artwork easy and fun.\n\nOur photographers have many years of experience in portrait photography; they are fantastic with making the shyest of people feel relaxed and comfortable. All you need to do is relax, have fun and enjoy the experience with your loved ones.\n\nShortly after your session you will enjoy your ordering session, which is just as much fun as your shoot.\n","Your portrait session","","inherit","open","open","","547-revision-4","","","2012-09-22 01:36:52","2012-09-22 01:36:52","","547","http://www.livingimagephotography.com.au/547-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("886","1","2012-09-22 01:42:14","2012-09-22 01:42:14","This is the <strong>BEST</strong> part.\n\nCollecting your order is the most reward step of all. Every image that is ordered is carefully retouched and enhanced to ensure the highest of image quality. Your finished piece of art not only looks good but will last a life time – we guarantee it for life.\n\nOnce you have it proudly displayed in your home, you will be the envy of all of your friends. There is no better way to make a house a home then with beautiful warm images of your loved ones.","Collecting your order","","inherit","open","open","","552-revision-3","","","2012-09-22 01:42:14","2012-09-22 01:42:14","","552","http://www.livingimagephotography.com.au/552-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("887","1","2012-09-26 04:33:36","2012-09-26 04:33:36","This is the <strong>BEST</strong> part.\n\nCollecting your order is the most reward step of all. Every image that is ordered is carefully retouched and enhanced to ensure the highest of image quality. Your finished piece of art not only looks good but will last a life time – we guarantee it for life.\n\nOnce you have it proudly displayed in your home, you will be the envy of all of your friends. There is no better way to make a house a home then with beautiful warm images of your loved ones.","Collecting your Fine Art","","inherit","open","open","","552-revision-4","","","2012-09-26 04:33:36","2012-09-26 04:33:36","","552","http://www.livingimagephotography.com.au/552-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("889","1","2012-09-22 01:32:37","2012-09-22 01:32:37","Depending on the type of look and feel you are looking for with your portraits, we will determine what clothing options will work best for you. At the time of your booking, we will discuss with you, the best clothing options for you and your family.  However, here are a few great tips to get you started….\n\n<strong><em>Hair and Make-Up</em></strong>\n\nYour hair and make-up should also be worn as you would normally wear it. However, do take a moment to have a look at everyone’s hair; is anyone due for a hair cut or colour? If so, make sure you book them in before your session. We want to capture images of the real you, so no need to go over the top with make-up if you don’t normally wear it.  We retouch all of the work that you purchase, so if there is something that you’re not entirely happy with in your complexion then we can fix it.\n\n<strong><em>What to wear</em></strong>\n\nIt is important that you feel comfortable in whatever it is that you decide to wear, because if you feel good you will look good.\n\nAs a rule of thumb, smart casual is the best way to go. Guys look great in collared shirts, long flowing dresses look stunning on the girls and little kids look great in bright colours. Don’t be afraid to mix it up a bit.\n\nKeep in mind what everybody is wearing to maintain harmony with the overall look, but more importantly steer away from heavy stripes, spots or large logos. Try not to have an exact match of clothing for everyone unless you particularly wish to theme the images.  Instead, use similar colours in the clothing for everyone - two to three co-ordinated colours work best.\n\nConsider your finger nails and toe nails (if you’re wearing open toed footwear), prepare them in line with your own personal style. If you wear glasses, be sure to bring a pair with clear lenses.\n\nDon’t be worried if you don’t have a wardrobe that rivals the celebrities, sometimes the simplest of clothing can be the most effective. But do make sure all your clothes are clean and pressed. It’s important for everyone to wear flattering clothing that fits correctly.\n\nFeel free to bring a couple of out fits to your session; your photographer will help you choose the most appropriate one. It also gives you the opportunity to mix it up a little bit, you can change clothing half way through your session to add some additional variety to your shots.\n\n<strong><em>Getting the kids ready</em></strong>\n\nLittle ones can sometimes be the trickiest to prepare for a photo session. They quickly pick up on stress and may become nervous, so always keep it fun and don’t rehearse the sitting.\n\nWhen booking your session keep in mind your children’s sleep times. No one likes to smile and have fun when they are tired and ready for a nap.\n\nMake sure you arrive at your session early to give your child time to get to know your photographer and used to their new surroundings. During the session if you want to help with making them smile, it works really well when parents stand behind the photographer so young ones look in the direction of the camera when you’re calling for their attention.\n\nBring along their favorite toy, this can add an extra level of sentiment to your photographs.","Prepairing for your session","","inherit","open","open","","545-revision-6","","","2012-09-22 01:32:37","2012-09-22 01:32:37","","545","http://www.livingimagephotography.com.au/545-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("890","1","2012-09-22 01:00:58","2012-09-22 01:00:58","<h5>\'PLAY FAVORITE\' COMPETITION:</h5>\nEntry is open only to persons eighteen years and older, who are residents of Victoria or New South Wales and have <strong>not won a competition, prize or promotional item, through Living Image Photography in the last twelve months.</strong>\n\nTo enter, the completed online form must be received at the studio by the end of the promotion date. Entries not properly completed will be rejected. Late entries will not be accepted. Prize winners will be notified by mail, email or phone. The major prize winner will be the client with the most valid votes. The Major Prize winner will be entitled to up to $2000 worth of products from Living Image, to be redeemed from their recent session, to be used in one transaction, any unused balance will be forfeited. The Major Prize is valid for a period of three months from the date of notification. Consolation Prizes will have an expiry date printed on the Gift Certificate. Prizes are non transferable, not exchangeable or redeemable in whole or in part for any cash equivalent. Prizes cannot be used in conjunction with any other offer or promotion.\n<h5>APPOINTMENT HOLDING FEE/ DEPOSITS</h5>\n<strong>A holding fee / deposit of $50 will be required to secure and hold your appointment. This holding fee ensures your commitment to the scheduled appointment.</strong>\nThe holding fee / deposit will be returned to you at the presentation of the photographs following the photo shoot at the Ordering Session, provided that you have completed your appointment at the correctly scheduled time and date. Failure to attend or complete your scheduled appointment may result in the cancellation of any prize and the forfeiture of the holding fee at the sole discretion of studio management.\n<h5>GIFT CERTIFICATES/PROMOTIONAL VOUCHERS:</h5>\nMust be redeemed by the holder prior to the expiry date, provided the holder has not redeemed a Competition Prize, Gift Certificate or Promotional Voucher with Living Image Photography in the last 6 months (date calculated from the previous sitting date). Prizes are for domestic portraiture and can not be used for commercial photography.\n<h5>TRANSFERABLE:</h5>\nPromotional Vouchers and Gift Certificates <strong>ARE</strong> transferable to family or friends. They are not exchangeable or redeemable in whole or in part for any cash equivalent. The vouchers and gift certificates cannot be used in conjunction with any other offer, prize or promotion. Only one (1) Gift Certificate or Promotional voucher/certificate can be used at a time.  You cannot use the gift certificate or promotional voucher to purchase products from any other photo sessions.\n<h5>FACEBOOK COMPETITION:</h5>\nBy entering our Facebook competition, the entrant acknowledges that the promotion is in no way sponsored, endorsed, administered by or associated with, Facebook in any way.\n<h5>ARTISTIC CONTROL:</h5>\nLiving Image Photography reserves artistic control over the design and content of each photoshoot. We may, at our discretion, decline to create certain types or styles of photography. We reserve the right to refuse to produce images at some sizes or combinations of sizes if we believe such images would or could be detrimental to our reputation as a professional studio or as professional photographers.\n\n<strong>Clients should discuss their requirements with the studio prior to the photoshoot.</strong>\n<h5>APPOINTMENT RESCHEDULE POLICY:</h5>\n<strong>Gift Certificates and Promotional Vouchers entitle the holder to a SINGLE APPOINTMENT ONLY. Once made, an appointment can not be rescheduled and the Gift Certificate or Promotional Voucher is deemed to have been used in full at that original appointment time and date.</strong>\n\n*NOTE: In exceptional circumstances, management may, at their sole discretion, reschedule an appointment and carry forward the Gift Certificate and holding fee / deposit.\n<h5>NO SHOW POLICY:</h5>\nNon attendance (NO SHOW) at an appointment without notice, will result in the forfeiture of the holding / deposit fee. The Gift Certificate or Promotional Voucher is then deemed to have been used in full.<strong>Living Image Photography reserves the right to then charge the appointment holder the full Sitting Fee of $150 (less the $50 holding deposit).</strong>\n<h5>COPYRIGHT:</h5>\nUnrestricted Copyright to all images created during the photo shoot that forms part of the Gift Certificate or Promotional Voucher or Referral Voucher is deemed to belong solely to Living Image Photography.\n<h5>PRIVACY:</h5>\nBy commissioning Living Image Photography to create images or by entering any promotion or competition, clients and or entrants understand and agree that Living Image Photography may use the information provided by them in accordance with National Privacy Principles. <a href=\"http://www.privacy.gov.au/\" target=\"_blank\">http://www.privacy.gov.au</a>","Terms and Conditions","","inherit","open","open","","573-revision-4","","","2012-09-22 01:00:58","2012-09-22 01:00:58","","573","http://www.livingimagephotography.com.au/573-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("891","1","2012-09-22 05:56:41","2012-09-22 05:56:41","[gravityform id=2 title=false description=true]","Gift Certificate Order Form","","inherit","open","open","","845-revision-2","","","2012-09-22 05:56:41","2012-09-22 05:56:41","","845","http://www.livingimagephotography.com.au/845-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("892","1","2012-09-22 01:43:28","2012-09-22 01:43:28","An important part of the process is the cost. We feel it’s important that you receive the most value for your investment, and whatever you decide to purchase fits within your budget. We encourage you to feel comfortable with your order.\n\nAll of the work that we produce for you is finished artwork, ready to hang or display, and comes with a life time guarantee. With this in mind here is a guide to our pricing.\n\nOur portrait fee is $150, which includes;\n<ul>\n	<li>Your pre portrait consultation in our studio or on the phone (allow 30mins),</li>\n	<li>Your creative portrait session, in our studio (allow an hour and a half),</li>\n	<li>and your ordering session, in our studio (allow up to 2 hours)</li>\n</ul>\nWe aim to capture anywhere between 40 to 100 <em><span style=\"text-decoration: underline;\">different</span></em> images during your portrait session. We will take you through the whole collection during your ordering session for you to select your absolute favourites.\n\nOur 10 inch matted portraits start from as little as $195. We have a whole range display options to suit all price points and budgets. Our display options include;\n<ul>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/fine-art-decor/\">Wall Portraits &amp; Collections</a></li>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/fine-art-albums/\">Hand Bound Albums &amp; Story Books</a></li>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/fine-art-collections-box/\">Desktop Portraits &amp; Matted Prints</a></li>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/gifts/\">Gift Certificates for your friends and loved ones</a></li>\n</ul>\n<span style=\"color: #ff0000;\">Take this opportunity to <a href=\"http://www.livingimagephotography.com.au/bookings/\">book your session now</a>, and start this exciting journey.</span>","Pricing","","inherit","open","open","","15-revision-6","","","2012-09-22 01:43:28","2012-09-22 01:43:28","","15","http://www.livingimagephotography.com.au/15-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("893","1","2012-09-27 01:42:48","2012-09-27 01:42:48","","Implied Nude & Nude","","publish","open","closed","","implied-nude-nude","","","2012-10-09 05:05:19","2012-10-09 05:05:19","","8","http://www.livingimagephotography.com.au/?page_id=893","0","page","","0");
INSERT INTO wp_posts VALUES("894","1","2012-09-27 01:42:11","2012-09-27 01:42:11","","Implied Nude & Nude","","inherit","open","open","","893-revision","","","2012-09-27 01:42:11","2012-09-27 01:42:11","","893","http://www.livingimagephotography.com.au/893-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("895","1","2012-09-27 01:59:31","2012-09-27 01:59:31","","Childrens Portraits","","publish","open","open","","children-portraits","","","2012-10-11 02:01:32","2012-10-11 02:01:32","","8","http://www.livingimagephotography.com.au/?page_id=895","0","page","","0");
INSERT INTO wp_posts VALUES("896","1","2012-09-27 01:57:13","2012-09-27 01:57:13","","Kids","","trash","closed","closed","","kids","","","2012-10-09 02:01:54","2012-10-09 02:01:54","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=896","0","gallery","","0");
INSERT INTO wp_posts VALUES("897","1","2012-09-27 01:57:30","2012-09-27 01:57:30","","Kids_slide","","trash","closed","closed","","kids_slide","","","2012-10-09 02:01:05","2012-10-09 02:01:05","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=897","0","gallery","","0");
INSERT INTO wp_posts VALUES("899","1","2012-09-27 01:59:06","2012-09-27 01:59:06","","ChildrensPhotographer027","","trash","open","open","","childrensphotographer027-2","","","2012-10-05 01:05:02","2012-10-05 01:05:02","","896","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer0271.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("902","1","2012-09-27 01:59:19","2012-09-27 01:59:19","","Kids","","inherit","open","open","","895-revision","","","2012-09-27 01:59:19","2012-09-27 01:59:19","","895","http://www.livingimagephotography.com.au/895-revision/","0","revision","","0");
INSERT INTO wp_posts VALUES("904","1","2012-09-27 01:59:46","2012-09-27 01:59:46","","ChildrensPhotographer044","","trash","open","open","","childrensphotographer044-2","","","2012-10-05 01:05:02","2012-10-05 01:05:02","","896","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer0441.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("912","1","2012-09-27 01:42:48","2012-09-27 01:42:48","","Implied Nude & Nude","","inherit","open","open","","893-revision-2","","","2012-09-27 01:42:48","2012-09-27 01:42:48","","893","http://www.livingimagephotography.com.au/893-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("915","1","2012-09-27 02:00:51","2012-09-27 02:00:51","","ChildrensPhotographer056","","trash","open","open","","childrensphotographer056-2","","","2012-10-05 01:05:02","2012-10-05 01:05:02","","896","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer0561.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("932","1","2012-09-27 02:02:21","2012-09-27 02:02:21","","ChildrensPhotographer082","","trash","open","open","","childrensphotographer082-2","","","2012-10-05 01:05:02","2012-10-05 01:05:02","","896","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer0821.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("935","1","2012-09-27 02:03:39","2012-09-27 02:03:39"," ","","","publish","open","open","","935","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","8","http://www.livingimagephotography.com.au/?p=935","16","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("936","1","2012-09-27 02:03:38","2012-09-27 02:03:38"," ","","","publish","open","open","","936","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","8","http://www.livingimagephotography.com.au/?p=936","13","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("937","1","2012-09-27 02:02:47","2012-09-27 02:02:47","","ChildrensPhotographer086","","trash","open","open","","childrensphotographer086-2","","","2012-10-05 01:05:02","2012-10-05 01:05:02","","896","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer0861.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("939","1","2012-09-27 02:03:06","2012-09-27 02:03:06","","ChildrensPhotographer089","","trash","open","open","","childrensphotographer089-2","","","2012-10-05 01:05:02","2012-10-05 01:05:02","","896","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer0891.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("948","1","2012-09-27 02:04:41","2012-09-27 02:04:41","","ChildrensPhotographer104","","trash","open","open","","childrensphotographer104-2","","","2012-10-05 01:05:02","2012-10-05 01:05:02","","896","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer1041.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("951","1","2012-09-27 01:59:31","2012-09-27 01:59:31","","Kids","","inherit","open","open","","895-revision-2","","","2012-09-27 01:59:31","2012-09-27 01:59:31","","895","http://www.livingimagephotography.com.au/895-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("954","1","2012-09-27 02:05:29","2012-09-27 02:05:29","","ChildrensPhotographer112","","trash","open","open","","childrensphotographer112-2","","","2012-10-05 01:05:02","2012-10-05 01:05:02","","896","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer1121.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("957","1","2012-09-27 02:05:58","2012-09-27 02:05:58","","ChildrensPhotographer120","","trash","open","open","","childrensphotographer120-2","","","2012-10-05 01:05:02","2012-10-05 01:05:02","","896","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer1201.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("960","1","2012-09-27 02:06:28","2012-09-27 02:06:28","","BabyPhotographer06","","trash","open","open","","babyphotographer06-2","","","2012-10-05 01:05:02","2012-10-05 01:05:02","","896","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/BabyPhotographer061.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("963","1","2012-09-27 02:06:55","2012-09-27 02:06:55","","BabyPhotographer11","","trash","open","open","","babyphotographer11-2","","","2012-10-05 01:05:02","2012-10-05 01:05:02","","896","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/BabyPhotographer111.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("965","1","2012-09-27 02:07:16","2012-09-27 02:07:16","","BabyPhotographer14","","trash","open","open","","babyphotographer14-2","","","2012-10-05 01:05:02","2012-10-05 01:05:02","","896","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/BabyPhotographer141.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("966","1","2012-09-27 02:07:27","2012-09-27 02:07:27","","BabyPhotographer17","","trash","open","open","","babyphotographer17-2","","","2012-10-05 01:05:02","2012-10-05 01:05:02","","896","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/BabyPhotographer171.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("974","1","2012-09-27 02:08:55","2012-09-27 02:08:55","","ChildrensPhotographer016","","trash","open","open","","childrensphotographer016-2","","","2012-10-05 01:05:02","2012-10-05 01:05:02","","896","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer0161.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("977","1","2012-09-27 02:09:24","2012-09-27 02:09:24","","ChildrensPhotographer021","","trash","open","open","","childrensphotographer021-2","","","2012-10-05 01:05:02","2012-10-05 01:05:02","","896","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ChildrensPhotographer0211.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("979","1","2012-09-27 02:04:57","2012-09-27 02:04:57","","Kids","","inherit","open","open","","895-revision-3","","","2012-09-27 02:04:57","2012-09-27 02:04:57","","895","http://www.livingimagephotography.com.au/895-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("980","1","2012-09-20 06:30:11","2012-09-20 06:30:11","Nothing beats those cute chubby hands and feet, big gummy smiles and if we\'re lucky some giggles. Our baby portraits are fun and unique. We spend the time to patiently capture your little one\'s character. Keeping playful and light we create a variety of portraits that will just make your heart melt.\n\nThis is a wonderful period in your babies life to have their portrait done, they change so quickly, and before you know it those beautiful baby features will have gone. Capture those special little things for life with a baby portrait from us!","Baby Portraits","","inherit","open","open","","71-revision-8","","","2012-09-20 06:30:11","2012-09-20 06:30:11","","71","http://www.livingimagephotography.com.au/71-revision-8/","0","revision","","0");
INSERT INTO wp_posts VALUES("981","1","2012-09-21 08:19:00","2012-09-21 08:19:00","Photographing children’s portraits can be one of the most rewarding experiences!  Enjoying the fun and excitement of youth always reflects well in our work. We photograph children from infant through to early teenage years, and we enjoy a unique experience every time. It’s amazing how many different little personalities we encounter.\n\nOur creative children’s portraiture is the envy of many of our top-class peers: we have a simple method that ensures that our children enjoy themselves and interact with the whole portrait session. It’s definitely not just chasing a child around with a camera, which will never yield great results.\n\nExperience and creativity allow us to relax and interact with your child, in order to bring out their little personalities and capture them as they are. We like to make the children’s portrait session enjoyable and exciting for your little one - always careful not to over stimulate. We think it’s important that your child feels like they have a say, or some control in the session.  This helps to overcome their fear of being photographed and also involves the little one directly in the portrait process - which brings the portrait session to life.\n\nAlong with the studio portrait sessions, we enjoy photographing many of our child portrait studies on location.  We have some picturesque situations that really create amazing compositions, we’re sure you will agree.","Child Portraits","","inherit","open","open","","75-revision-7","","","2012-09-21 08:19:00","2012-09-21 08:19:00","","75","http://www.livingimagephotography.com.au/75-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("984","1","2012-09-27 23:55:03","2012-09-27 23:55:03","","Animals","","trash","closed","closed","","animals","","","2012-10-09 02:01:54","2012-10-09 02:01:54","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=984","0","gallery","","0");
INSERT INTO wp_posts VALUES("996","1","2012-09-26 04:23:29","2012-09-26 04:23:29","","Animals","","inherit","open","open","","880-revision-2","","","2012-09-26 04:23:29","2012-09-26 04:23:29","","880","http://www.livingimagephotography.com.au/880-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("1001","1","2012-09-28 00:10:56","2012-09-28 00:10:56","","Implied Nude and Nude","","trash","closed","closed","","impliednudeandnude_slide","","","2012-10-09 02:01:54","2012-10-09 02:01:54","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=1001","0","gallery","","0");
INSERT INTO wp_posts VALUES("1007","1","2012-09-27 02:00:32","2012-09-27 02:00:32","","Implied Nude & Nude","","inherit","open","open","","893-revision-3","","","2012-09-27 02:00:32","2012-09-27 02:00:32","","893","http://www.livingimagephotography.com.au/893-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("1009","1","2012-09-28 00:14:33","2012-09-28 00:14:33","","Implied Nude & Nude","","inherit","open","open","","893-revision-4","","","2012-09-28 00:14:33","2012-09-28 00:14:33","","893","http://www.livingimagephotography.com.au/893-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("1010","1","2012-09-28 00:47:29","2012-09-28 00:47:29","","Implied Nude & Nude","","inherit","open","open","","893-revision-5","","","2012-09-28 00:47:29","2012-09-28 00:47:29","","893","http://www.livingimagephotography.com.au/893-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("1012","1","2012-09-28 23:09:41","2012-09-28 23:09:41","<br />\n[quote]This weeks Pic of the Week goes to the beautiful mother, Sofia with her 7 month old daughter Isabella. Sofia &amp; Isabella came to our Northbridge Studio to have their Portrait Photography taken earlier this week. They blew us away with an ease behind the camera and a gentle nature. Photographer Simon Carroll captured this magnificent moment between mother and daughter... there is honestly not a more perfect embrace.","Pic of the week!","","inherit","open","open","","640-autosave","","","2012-09-28 23:09:41","2012-09-28 23:09:41","","640","http://www.livingimagephotography.com.au/640-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("1013","1","2012-09-26 01:22:41","2012-09-26 01:22:41","<br />\nThis weeks Pic of the Week goes to the beautiful mother, Sofia with her 7 month old daughter Isabella. Sofia &amp; Isabella came to our Northbridge Studio to have their Portrait Photography taken earlier this week. They blew us away with an ease behind the camera and a gentle nature. Photographer Simon Carroll captured this magnificent moment between mother and daughter... there is honestly not a more perfect embrace.","Pic of the week!","","inherit","open","open","","640-revision-9","","","2012-09-26 01:22:41","2012-09-26 01:22:41","","640","http://www.livingimagephotography.com.au/640-revision-9/","0","revision","","0");
INSERT INTO wp_posts VALUES("1011","1","2012-09-26 04:52:16","2012-09-26 04:52:16","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\">[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met</p>\n<br />\n<p style=\"text-align: right;\"><strong>-Michelle Matthewman </strong></p>[/quote]\n<p style=\"text-align: left;\">[quote]The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\n<br />\n<p style=\"text-align: right;\"><strong>- James &amp; Kristen Green </strong></p>[/quote]\n[quote]Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n<p style=\"text-align: right\";><strong>Cheers,\n</strong><strong>Jen Drysdale</strong></p>[/quote]\n\n[quote]Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinely had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thank you Simon.\n<p style=\"text-align: right\";><strong>-Maureen Wills </strong></p>[/quote]\n\n[quote]Dear Simon and Amy,\n\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\n\n\n<p style=\"text-align:right\";><strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></p>[/quote]\n\n[quote]I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\n<p style=\"text-align: right\";><strong>-Carly Hansen</strong></p>[/quote]\n\n[quote]Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\n<strong>See it here</strong>&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\"><h6>The Strands Of Me</h6></a> </em>[/quote]\n\n[quote]Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<p style=\"text-align: right\";><strong>Cheers\nJess and Ben</strong>[/quote]\n\n[quote]DAVID IS AWESOME!!!\nWe had a great time, it was relaxed, comfortable and the location of the photo shoot was wonderful! David was great with the kids, he has a wonderful personality which allowed us to feel welcomed and be ourselves! Emily and David you are both wonderful professionals who made us feel more like friends than clients…</em></em>\n\nGood luck for the future\n\n<p style=\"text-align: right\";><strong>Kind Regards,\nKatine, Evan, Ecrini, Nickolas and Stavros Maounis</strong></p>\n\n\nPS – Emily was awesome too xx[/quote]\n\n[quote]What a fantastic experience!\n\n<em><em>On our way driving to our ‘photo shoot’ we were starting to think ‘What are we doing?’ thinking we would be too anxious and self conscious. All that went out of the window within minutes of meeting David. We had so much fun and it showed in the photos – which are so BEAUTIFUL! We have wonderful memories of the day too (we’ll never forget the ‘Drunken Scotsman dance’!). Thank-you so much Emily for your enthusiasm and patience… ‘Emily show us that one again, and that one, no that one – and can you show us them all again??’ Such a wonderful time and lovely photos to keep forever!\n\n<p style=\"text-align: right\";><strong>See you next time,\nNatalie and Ewen Gibb</strong></p>[/quote]\n\n[quote]Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderful photos had been captured of our ugly mugs!\n\n<p style=\"text-align: right\";><strong>Thanks again,\nAnne and Owen Kruger</strong></p>[/quote]\n\n\n[quote]We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\nIt was a great day – one I would recommend to anyone\n\n<p style=\"text-align: right\";><strong>Thanks so much,\nSimone Faulkner</strong></p>[/quote]\n\n\n\n[quote]Thanks guys for a great experience\n\nIt was the first family shoot for the grandparents, but David was very patient with everyone and kept everyone nice and relaxed. The pictures turned out amazing with lots of creative shoots. Thanks again for the opportunity to capture our little bubs and the free gift is lovely\n\n<p style=\"text-align: right\";><strong>Elson &amp; Karen Goh</p></strong>[/quote]\n\n\n[quote]David and Emily.\n\nOur photos are just amazing. We will never forget the great work that you guys have done. I will be recommending you to everyone in my community. It was great fun working with you guys. We wish you great luck for an everlasting success.\n\n<p style=\"text-align: right\";><strong>Shekhar, Vaishali and Shanti</strong></p>[/quote]\n\n[quote]Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!\n\n<p style=\"text-align: right\";><strong>The Trusso Family</strong></p>[/quote]\n\n\n\n[quote]Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! \n\n<p style=\"text-align:right\";><strong>Herman and Sol</strong></p>[/quote]\n\n[quote]Great photos! Great Service! Very professional people, very happy with everything! \n\n<p style=\"text-align: right\";><strong>Thanks\nHenneker Family</strong></p>[/quote]\n\n[quote]Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!\n\n<p style=\"text-align:right\";><strong>Mohamed Family</strong></p>[/quote]\n\n[quote]Hey guys!\n\nThank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.\n\n<strong><p style=\"text-align: right\";>Cheers,\nRobert Hart</strong></p>[/quote]\n\n[quote]Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.\n\n<p style=\"text-align: right\";><strong>Lyn and Rocco</p></strong>[/quote]\n\n[quote]A very pleasant experience. Living Image was very professional and accommodating.\n\n<p style=\"text-align:right\";><strong>Marty</p></strong>[/quote]\n\n[quote]We had a good time, very professional and friendly people.\n\n<strong><p style=\"text-align:right\";>Thank-you.\nJorge and Aracely</strong></p>[/quote]\n\n[quote]Excellent posing and lighting effects. Friendly and most accommodations. Great presentation in an environment that was relaxing and professional.\n\nVery impressed with finished product and  good manners from Emily and David.\n\n<p style=\"text-align:right\";><strong>Most Appreciated,\nJill and Paul Bronson</strong></p>[/quote]\n\n[quote]Very Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n\n<p style=\"text-align:right\";><strong>Edward Rynne</strong>[/quote]\n\n[quote]Thanks, great photos. Pleasant experience.\n\n<p style=\"text-align: right\";><strong>John and Antonella Calabrese</p></strong>[/quote]\n\n[quote]We’re very happy with the photos.\n\n<strong><p style=\"text-align\";>good job,\nHenry and Patricia Adie-Cooper</strong></p>[/quote]\n\n[quote]Thanks! Brilliant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n\n<p style=\"text-align: right\";><strong>Elaine and Noel Walters</strong></p>[/quote]\n\n[quote]We had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\n<strong><p style=\"text-align: right\";>Thanks,\nDerek Wall</strong></p>[/quote]\n\n[quote]A very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. \n\n<strong><p style=\"text-align: right\";>Thank-you,\nOtto and Jeannie Ashboth</strong></p>[/quote]\n\n[quote]Thanks for the fantastic photos and for being so patient handling all the young children.\n\n<p style=\"text-align: right\";><strong>Don</strong></p>[/quote]\n\n[quote]The photo session was excellent, Point Walter is so beautiful and David took time to choose the best place for us. Everyone was very helpful. Beautiful photo. Thank-you very much.\n\n<p style=\"text-align: right\";><strong>Rose</strong></p>[/quote]\n\n[quote]Both David and Emily have been great in the service provided as well as their friendliness and being very helpful in every possible way.\n\n<p style=\"text-align: right\";><strong>Ian Ong</strong></p>[/quote]\n\n[quote]Working with teenagers can be a difficult thing, especially when they are not willing participants in the task at hand. But David did a splendid job and our photo is testimony to that. Thank-you for the opportunity to participate.\n\n<p style=\"text-align: right\";><strong>Helen Westcott</strong></p>[/quote]\n\n[quote]Lovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\n<strong><p style=\"text-align: right\";>Many thanks,\nBeryl Price</p></strong>[/quote]\n\n[quote]Very, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\n<strong><p style=\"text-align:right\";>Thanks,\nDionne Smith and family</p></strong>[/quote]\n\n[quote]Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\n<strong><p style=\"text-align: right\";>Thank you,\nJohn Garbin and family </p></strong>[/quote]\n\n[quote]The photos are gorgeous, we had a lot of fun at the river and David made Kyra feel completely at ease.\n\n<strong><p style=\"text-align: right\";>Thank-you,\nChristine, Mal and Kyra</p></strong>[/quote]\n\n[quote]Thank you David and Emily\n\nOur family enjoyed the photo shoot, the professional approach to the job, but the friendly and relaxing time we spent with you. The photos are superb and we will enjoy them till we can’t see any more!\n\nVery best wishes to you both…. \n\n<strong><p style=\"text-align: right\";>Bev Flockart</p></strong>[/quote]\n\n[quote]Thanks so much Emily and David for making me feel so comfortable during the shoot. We all enjoyed ourselves thoroughly. So THANKS!\n\n<strong><p style=\"text-align: right\";>Pamela</p></strong>[/quote]","Testimonials","","inherit","open","open","","18-revision-14","","","2012-09-26 04:52:16","2012-09-26 04:52:16","","18","http://www.livingimagephotography.com.au/18-revision-14/","0","revision","","0");
INSERT INTO wp_posts VALUES("1014","1","2012-09-26 05:03:23","2012-09-26 05:03:23","Depending on the type of look and feel you are looking for with your portraits, we will determine what clothing options will work best for you. At the time of your booking, we will discuss with you, the best clothing options for you and your family.  However, here are a few great tips to get you started….\n\n<strong><em>Hair and Make-Up</em></strong>\n\nYour hair and make-up should also be worn as you would normally wear it. However, do take a moment to have a look at everyone’s hair; is anyone due for a hair cut or colour? If so, make sure you book them in before your session. We want to capture images of the real you, so no need to go over the top with make-up if you don’t normally wear it.  We retouch all of the work that you purchase, so if there is something that you’re not entirely happy with in your complexion then we can fix it.\n\n<strong><em>What to wear</em></strong>\n\nIt is important that you feel comfortable in whatever it is that you decide to wear, because if you feel good you will look good.\n\nAs a rule of thumb, smart casual is the best way to go. Guys look great in collared shirts, long flowing dresses look stunning on the girls and little kids look great in bright colours. Don’t be afraid to mix it up a bit.\n\nKeep in mind what everybody is wearing to maintain harmony with the overall look, but more importantly steer away from heavy stripes, spots or large logos. Try not to have an exact match of clothing for everyone unless you particularly wish to theme the images.  Instead, use similar colours in the clothing for everyone - two to three co-ordinated colours work best.\n\nConsider your finger nails and toe nails (if you’re wearing open toed footwear), prepare them in line with your own personal style. If you wear glasses, be sure to bring a pair with clear lenses.\n\nDon’t be worried if you don’t have a wardrobe that rivals the celebrities, sometimes the simplest of clothing can be the most effective. But do make sure all your clothes are clean and pressed. It’s important for everyone to wear flattering clothing that fits correctly.\n\nFeel free to bring a couple of out fits to your session; your photographer will help you choose the most appropriate one. It also gives you the opportunity to mix it up a little bit, you can change clothing half way through your session to add some additional variety to your shots.\n\n<strong><em>Getting the kids ready</em></strong>\n\nLittle ones can sometimes be the trickiest to prepare for a photo session. They quickly pick up on stress and may become nervous, so always keep it fun and don’t rehearse the sitting.\n\nWhen booking your session keep in mind your children’s sleep times. No one likes to smile and have fun when they are tired and ready for a nap.\n\nMake sure you arrive at your session early to give your child time to get to know your photographer and used to their new surroundings. During the session if you want to help with making them smile, it works really well when parents stand behind the photographer so young ones look in the direction of the camera when you’re calling for their attention.\n\nBring along their favorite toy, this can add an extra level of sentiment to your photographs.\n\n<strong><em>Animals</em></strong>\n\nWE all want our animals to look their best for their moment in the spot light. However, it is not necessary to have them groomed in the days leading up to the shoot, however, if you prefer to do this- Great! Personalize your shoot- bring along your pets favorite toys to be incorporated into some of the photographs. Of course, we have our own collection of toys in studio as well! Please bring along your pet\'s favorite treats to the session as well!\n\nAt this point, it is a good idea to ask yourself; Would you like to be in same of the photographs? Are there particular personality shots you would like us to capture? How were you thinking to display your Fine Art around your home?","Prepairing for your session","","inherit","open","open","","545-revision-7","","","2012-09-26 05:03:23","2012-09-26 05:03:23","","545","http://www.livingimagephotography.com.au/545-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("1015","1","2012-09-26 04:34:15","2012-09-26 04:34:15","This is the <strong>BEST</strong> part.\n\nCollecting your order is the most reward step of all. Every image that is ordered is carefully retouched and enhanced to ensure the highest of image quality. Your finished piece of art not only looks good but will last a life time – we guarantee it for life.\n\nOnce you have it proudly displayed in your home, you will be the envy of all of your friends. There is no better way to make a house a home then with beautiful warm images of your loved ones.","Collecting your Fine Art","","inherit","open","open","","552-revision-5","","","2012-09-26 04:34:15","2012-09-26 04:34:15","","552","http://www.livingimagephotography.com.au/552-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("1016","1","2012-09-26 04:32:55","2012-09-26 04:32:55","Now it’s time for you to see the collection of your wonderful images from your photo shoot.\n\nOur trained designers will walk you through your images and once you have chosen your favourites they will help you choose the best display options. There are lots of different options, so we are sure we have at least one that you will love.\n\nIf there is a special spot in the house where you would like to hang your images, feel free (in fact we encourage you) to bring in a digital image of this space. We can use this image to show you exactly how your chosen collection will look on your wall at home – to scale, and in your desired finish. This takes out all the guess work, it will ensure you feel happy and comfortable with the look of your new artwork.","Design Consulation","","inherit","open","open","","550-revision-5","","","2012-09-26 04:32:55","2012-09-26 04:32:55","","550","http://www.livingimagephotography.com.au/550-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("1017","1","2012-09-28 23:12:18","2012-09-28 23:12:18","Depending on the type of look and feel you are looking for with your portraits, we will determine what clothing options will work best for you. At the time of your booking, we will discuss with you, the best clothing options for you and your family.  However, here are a few great tips to get you started….\n\n<strong><em>Hair and Make-Up</em></strong>\n\nYour hair and make-up should also be worn as you would normally wear it. However, do take a moment to have a look at everyone’s hair; is anyone due for a hair cut or colour? If so, make sure you book them in before your session. We want to capture images of the real you, so no need to go over the top with make-up if you don’t normally wear it.  We retouch all of the work that you purchase, so if there is something that you’re not entirely happy with in your complexion then we can fix it.\n\n<strong><em>What to wear</em></strong>\n\nIt is important that you feel comfortable in whatever it is that you decide to wear, because if you feel good you will look good.\n\nAs a rule of thumb, smart casual is the best way to go. Guys look great in collared shirts, long flowing dresses look stunning on the girls and little kids look great in bright colours. Don’t be afraid to mix it up a bit.\n\nKeep in mind what everybody is wearing to maintain harmony with the overall look, but more importantly steer away from heavy stripes, spots or large logos. Try not to have an exact match of clothing for everyone unless you particularly wish to theme the images.  Instead, use similar colours in the clothing for everyone - two to three co-ordinated colours work best.\n\nConsider your finger nails and toe nails (if you’re wearing open toed footwear), prepare them in line with your own personal style. If you wear glasses, be sure to bring a pair with clear lenses.\n\nDon’t be worried if you don’t have a wardrobe that rivals the celebrities, sometimes the simplest of clothing can be the most effective. But do make sure all your clothes are clean and pressed. It’s important for everyone to wear flattering clothing that fits correctly.\n\nFeel free to bring a couple of out fits to your session; your photographer will help you choose the most appropriate one. It also gives you the opportunity to mix it up a little bit, you can change clothing half way through your session to add some additional variety to your shots.\n\n<strong><em>Getting the kids ready</em></strong>\n\nLittle ones can sometimes be the trickiest to prepare for a photo session. They quickly pick up on stress and may become nervous, so always keep it fun and don’t rehearse the sitting.\n\nWhen booking your session keep in mind your children’s sleep times. No one likes to smile and have fun when they are tired and ready for a nap.\n\nMake sure you arrive at your session early to give your child time to get to know your photographer and used to their new surroundings. During the session if you want to help with making them smile, it works really well when parents stand behind the photographer so young ones look in the direction of the camera when you’re calling for their attention.\n\nBring along their favorite toy, this can add an extra level of sentiment to your photographs.\n\n<strong><em>Animals</em></strong>\n\nWE all want our animals to look their best for their moment in the spot light. However, it is not necessary to have them groomed in the days leading up to the shoot, however, if you prefer to do this- Great! Personalize your shoot- bring along your pets favorite toys to be incorporated into some of the photographs. Of course, we have our own collection of toys in studio as well! Please bring along your pet\'s favorite treats to the session as well!\n\nAt this point, it is a good idea to ask yourself; Would you like to be in same of the photographs? Are there particular personality shots you would like us to capture? How were you thinking to display your Fine Art around your home?","Prepairing for your session","","inherit","open","open","","545-revision-8","","","2012-09-28 23:12:18","2012-09-28 23:12:18","","545","http://www.livingimagephotography.com.au/545-revision-8/","0","revision","","0");
INSERT INTO wp_posts VALUES("1018","1","2012-09-26 04:33:18","2012-09-26 04:33:18","This is the FUN part!\n\nYou will spend up to 1 and ½ hour with your photographer in our studio capturing beautiful photographs based on the plan we made during your consultation. We will shoot a great variety of images to make building your artwork easy and fun.\n\nOur photographers have many years of experience in portrait photography; they are fantastic with making the shyest of people feel relaxed and comfortable. All you need to do is relax, have fun and enjoy the experience with your loved ones.\n\nShortly after your session you will enjoy your ordering session, which is just as much fun as your shoot.\n","Your Shoot","","inherit","open","open","","547-revision-5","","","2012-09-26 04:33:18","2012-09-26 04:33:18","","547","http://www.livingimagephotography.com.au/547-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("1019","1","2012-09-26 03:06:30","2012-09-26 03:06:30","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<hr />\n\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-48","","","2012-09-26 03:06:30","2012-09-26 03:06:30","","6","http://www.livingimagephotography.com.au/6-revision-48/","0","revision","","0");
INSERT INTO wp_posts VALUES("1020","1","2012-09-29 00:17:11","2012-09-29 00:17:11","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<!-- <div align=\"right\">\n<a href=\"https://www.facebook.com/livingimagesydney?ref=ts\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/visit-us.png\" /></a>\n</div> -->\n\n<hr />\n\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-49","","","2012-09-29 00:17:11","2012-09-29 00:17:11","","6","http://www.livingimagephotography.com.au/6-revision-49/","0","revision","","0");
INSERT INTO wp_posts VALUES("1021","1","2012-09-29 00:18:03","2012-09-29 00:18:03","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<div align=\"right\">\n<a href=\"https://www.facebook.com/livingimagesydney?ref=ts\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/visit-us.png\" /></a>\n</div>\n\n<hr />\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-50","","","2012-09-29 00:18:03","2012-09-29 00:18:03","","6","http://www.livingimagephotography.com.au/6-revision-50/","0","revision","","0");
INSERT INTO wp_posts VALUES("1022","1","2012-09-29 00:20:01","2012-09-29 00:20:01","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<div align=\"right\">\n<a href=\"https://www.facebook.com/livingimagesydney?ref=ts\"><img width=\"182\" height=\"58\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/visit-us.png\" /></a>\n</div>\n\n<hr />\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-51","","","2012-09-29 00:20:01","2012-09-29 00:20:01","","6","http://www.livingimagephotography.com.au/6-revision-51/","0","revision","","0");
INSERT INTO wp_posts VALUES("1023","1","2012-09-29 00:21:35","2012-09-29 00:21:35","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<div align=\"right\">\n<a href=\"https://www.facebook.com/livingimagesydney?ref=ts\"><img width=\"152\" height=\"48\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/visit-us.png\" /></a>\n</div>\n\n<hr />\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-52","","","2012-09-29 00:21:35","2012-09-29 00:21:35","","6","http://www.livingimagephotography.com.au/6-revision-52/","0","revision","","0");
INSERT INTO wp_posts VALUES("1024","1","2012-09-29 02:47:43","2012-09-29 02:47:43","This is the FUN part!\n\nYou will spend up to 1 and ½ hour with your photographer in our studio capturing beautiful photographs based on the plan we made during your consultation. We will shoot a great variety of images to make building your artwork easy and fun.\n\nOur photographers have many years of experience in portrait photography; they are fantastic with making the shyest of people feel relaxed and comfortable. All you need to do is relax, have fun and enjoy the experience with your loved ones.\n\nShortly after your session you will enjoy your ordering session, which is just as much fun as your shoot.\n\n<div align=\"center\">\n<img src=\"public_html/livingimagephotography.com.au/wp-content/uploads/2012/09\" />\n</div>\n","Your Shoot","","inherit","open","open","","547-autosave","","","2012-09-29 02:47:43","2012-09-29 02:47:43","","547","http://www.livingimagephotography.com.au/547-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("1025","1","2012-09-28 23:14:22","2012-09-28 23:14:22","This is the FUN part!\n\nYou will spend up to 1 and ½ hour with your photographer in our studio capturing beautiful photographs based on the plan we made during your consultation. We will shoot a great variety of images to make building your artwork easy and fun.\n\nOur photographers have many years of experience in portrait photography; they are fantastic with making the shyest of people feel relaxed and comfortable. All you need to do is relax, have fun and enjoy the experience with your loved ones.\n\nShortly after your session you will enjoy your ordering session, which is just as much fun as your shoot.\n","Your Shoot","","inherit","open","open","","547-revision-6","","","2012-09-28 23:14:22","2012-09-28 23:14:22","","547","http://www.livingimagephotography.com.au/547-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("1026","1","2012-09-29 02:48:07","2012-09-29 02:48:07","This is the FUN part!\n\nYou will spend up to 1 and ½ hour with your photographer in our studio capturing beautiful photographs based on the plan we made during your consultation. We will shoot a great variety of images to make building your artwork easy and fun.\n\nOur photographers have many years of experience in portrait photography; they are fantastic with making the shyest of people feel relaxed and comfortable. All you need to do is relax, have fun and enjoy the experience with your loved ones.\n\nShortly after your session you will enjoy your ordering session, which is just as much fun as your shoot.\n\n<div align=\"center\">\n<img src=\"public_html/livingimagephotography.com.au/wp-content/uploads/2012/09/temp1.jpg\" />\n</div>\n","Your Shoot","","inherit","open","open","","547-revision-7","","","2012-09-29 02:48:07","2012-09-29 02:48:07","","547","http://www.livingimagephotography.com.au/547-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("1027","1","2012-09-29 02:49:13","2012-09-29 02:49:13","This is the FUN part!\n\nYou will spend up to 1 and ½ hour with your photographer in our studio capturing beautiful photographs based on the plan we made during your consultation. We will shoot a great variety of images to make building your artwork easy and fun.\n\nOur photographers have many years of experience in portrait photography; they are fantastic with making the shyest of people feel relaxed and comfortable. All you need to do is relax, have fun and enjoy the experience with your loved ones.\n\nShortly after your session you will enjoy your ordering session, which is just as much fun as your shoot.\n\n<div align=\"center\">\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/temp1.jpg\" />\n</div>\n","Your Shoot","","inherit","open","open","","547-revision-8","","","2012-09-29 02:49:13","2012-09-29 02:49:13","","547","http://www.livingimagephotography.com.au/547-revision-8/","0","revision","","0");
INSERT INTO wp_posts VALUES("1028","1","2012-09-29 02:50:44","2012-09-29 02:50:44","This is the FUN part!\n\nYou will spend up to 1 and ½ hour with your photographer in our studio capturing beautiful photographs based on the plan we made during your consultation. We will shoot a great variety of images to make building your artwork easy and fun.\n\nOur photographers have many years of experience in portrait photography; they are fantastic with making the shyest of people feel relaxed and comfortable. All you need to do is relax, have fun and enjoy the experience with your loved ones.\n\nShortly after your session you will enjoy your ordering session, which is just as much fun as your shoot.\n\n<br />\n\n<div align=\"\">\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/temp1.jpg\" />\n</div>\n","Your Shoot","","inherit","open","open","","547-revision-9","","","2012-09-29 02:50:44","2012-09-29 02:50:44","","547","http://www.livingimagephotography.com.au/547-revision-9/","0","revision","","0");
INSERT INTO wp_posts VALUES("1029","1","2012-09-29 02:58:09","2012-09-29 02:58:09","This is the FUN part!\n\nYou will spend up to 1 and ½ hour with your photographer in our studio capturing beautiful photographs based on the plan we made during your consultation. We will shoot a great variety of images to make building your artwork easy and fun.\n\nOur photographers have many years of experience in portrait photography; they are fantastic with making the shyest of people feel relaxed and comfortable. All you need to do is relax, have fun and enjoy the experience with your loved ones.\n\nShortly after your session you will enjoy your ordering session, which is just as much fun as your shoot.\n\n<br />\n\n<div align=\"\">\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/temp1.1jpg\" />\n</div>\n","Your Shoot","","inherit","open","open","","547-revision-10","","","2012-09-29 02:58:09","2012-09-29 02:58:09","","547","http://www.livingimagephotography.com.au/547-revision-10/","0","revision","","0");
INSERT INTO wp_posts VALUES("1030","1","2012-09-29 03:15:50","2012-09-29 03:15:50","Now it’s time for you to see the collection of your wonderful images from your photo shoot.\n\nOur trained designers will walk you through your images and once you have chosen your favourites they will help you choose the best display options. There are lots of different options, so we are sure we have at least one that you will love.\n\nIf there is a special spot in the house where you would like to hang your images, feel free (in fact we encourage you) to bring in a digital image of this space. We can use this image to show you exactly how your chosen collection will look on your wall at home – to scale, and in your desired finish. This takes out all the guess work, it will ensure you feel happy and comfortable with the look of your new artwork.\n\n\n<div align=\"center\">\n\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/temp2.jpg\" />\n\n</div>","Design Consulation","","inherit","open","open","","550-autosave","","","2012-09-29 03:15:50","2012-09-29 03:15:50","","550","http://www.livingimagephotography.com.au/550-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("1031","1","2012-09-28 23:13:45","2012-09-28 23:13:45","Now it’s time for you to see the collection of your wonderful images from your photo shoot.\n\nOur trained designers will walk you through your images and once you have chosen your favourites they will help you choose the best display options. There are lots of different options, so we are sure we have at least one that you will love.\n\nIf there is a special spot in the house where you would like to hang your images, feel free (in fact we encourage you) to bring in a digital image of this space. We can use this image to show you exactly how your chosen collection will look on your wall at home – to scale, and in your desired finish. This takes out all the guess work, it will ensure you feel happy and comfortable with the look of your new artwork.","Design Consulation","","inherit","open","open","","550-revision-6","","","2012-09-28 23:13:45","2012-09-28 23:13:45","","550","http://www.livingimagephotography.com.au/550-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("1032","1","2012-09-29 03:15:57","2012-09-29 03:15:57","Now it’s time for you to see the collection of your wonderful images from your photo shoot.\n\nOur trained designers will walk you through your images and once you have chosen your favourites they will help you choose the best display options. There are lots of different options, so we are sure we have at least one that you will love.\n\nIf there is a special spot in the house where you would like to hang your images, feel free (in fact we encourage you) to bring in a digital image of this space. We can use this image to show you exactly how your chosen collection will look on your wall at home – to scale, and in your desired finish. This takes out all the guess work, it will ensure you feel happy and comfortable with the look of your new artwork.\n\n\n<div align=\"center\">\n\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/temp2.jpg\" />\n\n</div>","Design Consulation","","inherit","open","open","","550-revision-7","","","2012-09-29 03:15:57","2012-09-29 03:15:57","","550","http://www.livingimagephotography.com.au/550-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("1033","1","2012-09-28 23:13:30","2012-09-28 23:13:30","This is the <strong>BEST</strong> part.\n\nCollecting your order is the most reward step of all. Every image that is ordered is carefully retouched and enhanced to ensure the highest of image quality. Your finished piece of art not only looks good but will last a life time – we guarantee it for life.\n\nOnce you have it proudly displayed in your home, you will be the envy of all of your friends. There is no better way to make a house a home then with beautiful warm images of your loved ones.","Collecting your Fine Art","","inherit","open","open","","552-revision-6","","","2012-09-28 23:13:30","2012-09-28 23:13:30","","552","http://www.livingimagephotography.com.au/552-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("1037","1","2012-10-05 00:55:31","2012-10-05 00:55:31"," ","","","publish","open","open","","1037","","","2012-10-11 01:12:13","2012-10-11 01:12:13","","0","http://www.livingimagephotography.com.au/?p=1037","1","nav_menu_item","","0");
INSERT INTO wp_posts VALUES("1039","1","2012-10-05 02:43:51","2012-10-05 02:43:51","","home-slide","","publish","closed","closed","","home-slide","","","2012-10-10 02:17:08","2012-10-10 02:17:08","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=1039","0","gallery","","0");
INSERT INTO wp_posts VALUES("1040","1","2012-10-05 02:45:47","2012-10-05 02:45:47","","6th-slide","","inherit","open","open","","6th-slide","","","2012-10-05 02:45:47","2012-10-05 02:45:47","","1039","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/6th-slide.jpg","7","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1041","1","2012-10-05 02:45:56","2012-10-05 02:45:56","","7th-slide","","trash","open","open","","7th-slide","","","2012-10-09 04:32:22","2012-10-09 04:32:22","","1039","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/7th-slide.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1042","1","2012-10-05 02:46:08","2012-10-05 02:46:08","","1st-slide","","inherit","open","open","","1st-slide","","","2012-10-05 02:46:08","2012-10-05 02:46:08","","1039","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/1st-slide.jpg","6","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1043","1","2012-10-05 02:46:19","2012-10-05 02:46:19","","2nd-slide","","inherit","open","open","","2nd-slide","","","2012-10-05 02:46:19","2012-10-05 02:46:19","","1039","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/2nd-slide.jpg","5","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1044","1","2012-10-05 02:46:40","2012-10-05 02:46:40","","3rd-slide","","trash","open","open","","3rd-slide","","","2012-10-09 04:32:22","2012-10-09 04:32:22","","1039","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/3rd-slide.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1045","1","2012-10-05 02:46:51","2012-10-05 02:46:51","","4th-slide","","inherit","open","open","","4th-slide","","","2012-10-05 02:46:51","2012-10-05 02:46:51","","1039","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/4th-slide.jpg","4","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1046","1","2012-10-05 02:47:11","2012-10-05 02:47:11","","5th-slide","","trash","open","open","","5th-slide","","","2012-10-09 04:32:22","2012-10-09 04:32:22","","1039","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/5th-slide.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1047","1","2012-10-05 00:53:02","2012-10-05 00:53:02","","Home","","inherit","open","open","","1035-revision-2","","","2012-10-05 00:53:02","2012-10-05 00:53:02","","1035","http://www.livingimagephotography.com.au/1035-revision-2/","0","revision","","0");
INSERT INTO wp_posts VALUES("1048","1","2012-10-05 02:48:52","2012-10-05 02:48:52","","Home","","inherit","open","open","","1035-revision-3","","","2012-10-05 02:48:52","2012-10-05 02:48:52","","1035","http://www.livingimagephotography.com.au/1035-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("1049","1","2012-10-05 02:50:59","2012-10-05 02:50:59","","Home","","inherit","open","open","","1035-revision-4","","","2012-10-05 02:50:59","2012-10-05 02:50:59","","1035","http://www.livingimagephotography.com.au/1035-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("1050","1","2012-10-05 02:52:29","2012-10-05 02:52:29","","Home","","inherit","open","open","","1035-revision-5","","","2012-10-05 02:52:29","2012-10-05 02:52:29","","1035","http://www.livingimagephotography.com.au/1035-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("1051","1","2012-09-28 01:23:05","2012-09-28 01:23:05","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\">[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met</p>\n<br />\n<p style=\"text-align: right;\"><strong>-Michelle Matthewman </strong></p>[/quote]\n<p style=\"text-align: left;\">[quote]The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\n<br />\n<p style=\"text-align: right;\"><strong>- James &amp; Kristen Green </strong></p>[/quote]\n[quote]Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n<p style=\"text-align: right\";><strong>Cheers,\n</strong><strong>Jen Drysdale</strong></p>[/quote]\n\n[quote]Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinely had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thank you Simon.\n<p style=\"text-align: right\";><strong>-Maureen Wills </strong></p>[/quote]\n\n[quote]Dear Simon and Amy,\n\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\n\n\n<p style=\"text-align:right\";><strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></p>[/quote]\n\n[quote]I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\n<p style=\"text-align: right\";><strong>-Carly Hansen</strong></p>[/quote]\n\n[quote]Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\n<strong>See it here</strong>&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\"><h6>The Strands Of Me</h6></a> </em>[/quote]\n\n[quote]Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<p style=\"text-align: right\";><strong>Cheers\nJess and Ben</strong>[/quote]\n\n[quote]DAVID IS AWESOME!!!\nWe had a great time, it was relaxed, comfortable and the location of the photo shoot was wonderful! David was great with the kids, he has a wonderful personality which allowed us to feel welcomed and be ourselves! Emily and David you are both wonderful professionals who made us feel more like friends than clients…</em></em>\n\nGood luck for the future\n\n<p style=\"text-align: right\";><strong>Kind Regards,\nKatine, Evan, Ecrini, Nickolas and Stavros Maounis</strong></p>\n\n\nPS – Emily was awesome too xx[/quote]\n\n[quote]What a fantastic experience!\n\n<em><em>On our way driving to our ‘photo shoot’ we were starting to think ‘What are we doing?’ thinking we would be too anxious and self conscious. All that went out of the window within minutes of meeting David. We had so much fun and it showed in the photos – which are so BEAUTIFUL! We have wonderful memories of the day too (we’ll never forget the ‘Drunken Scotsman dance’!). Thank-you so much Emily for your enthusiasm and patience… ‘Emily show us that one again, and that one, no that one – and can you show us them all again??’ Such a wonderful time and lovely photos to keep forever!\n\n<p style=\"text-align: right\";><strong>See you next time,\nNatalie and Ewen Gibb</strong></p>[/quote]\n\n[quote]Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderful photos had been captured of our ugly mugs!\n\n<p style=\"text-align: right\";><strong>Thanks again,\nAnne and Owen Kruger</strong></p>[/quote]\n\n\n[quote]We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\nIt was a great day – one I would recommend to anyone\n\n<p style=\"text-align: right\";><strong>Thanks so much,\nSimone Faulkner</strong></p>[/quote]\n\n\n\n[quote]Thanks guys for a great experience\n\nIt was the first family shoot for the grandparents, but David was very patient with everyone and kept everyone nice and relaxed. The pictures turned out amazing with lots of creative shoots. Thanks again for the opportunity to capture our little bubs and the free gift is lovely\n\n<p style=\"text-align: right\";><strong>Elson &amp; Karen Goh</p></strong>[/quote]\n\n\n[quote]David and Emily.\n\nOur photos are just amazing. We will never forget the great work that you guys have done. I will be recommending you to everyone in my community. It was great fun working with you guys. We wish you great luck for an everlasting success.\n\n<p style=\"text-align: right\";><strong>Shekhar, Vaishali and Shanti</strong></p>[/quote]\n\n[quote]Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!\n\n<p style=\"text-align: right\";><strong>The Trusso Family</strong></p>[/quote]\n\n\n\n[quote]Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! \n\n<p style=\"text-align:right\";><strong>Herman and Sol</strong></p>[/quote]\n\n[quote]Great photos! Great Service! Very professional people, very happy with everything! \n\n<p style=\"text-align: right\";><strong>Thanks\nHenneker Family</strong></p>[/quote]\n\n[quote]Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!\n\n<p style=\"text-align:right\";><strong>Mohamed Family</strong></p>[/quote]\n\n[quote]Hey guys!\n\nThank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.\n\n<strong><p style=\"text-align: right\";>Cheers,\nRobert Hart</strong></p>[/quote]\n\n[quote]Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.\n\n<p style=\"text-align: right\";><strong>Lyn and Rocco</p></strong>[/quote]\n\n[quote]A very pleasant experience. Living Image was very professional and accommodating.\n\n<p style=\"text-align:right\";><strong>Marty</p></strong>[/quote]\n\n[quote]We had a good time, very professional and friendly people.\n\n<strong><p style=\"text-align:right\";>Thank-you.\nJorge and Aracely</strong></p>[/quote]\n\n[quote]Excellent posing and lighting effects. Friendly and most accommodations. Great presentation in an environment that was relaxing and professional.\n\nVery impressed with finished product and  good manners from Emily and David.\n\n<p style=\"text-align:right\";><strong>Most Appreciated,\nJill and Paul Bronson</strong></p>[/quote]\n\n[quote]Very Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n\n<p style=\"text-align:right\";><strong>Edward Rynne</strong>[/quote]\n\n[quote]Thanks, great photos. Pleasant experience.\n\n<p style=\"text-align: right\";><strong>John and Antonella Calabrese</p></strong>[/quote]\n\n[quote]We’re very happy with the photos.\n\n<strong><p style=\"text-align\";>good job,\nHenry and Patricia Adie-Cooper</strong></p>[/quote]\n\n[quote]Thanks! Brilliant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n\n<p style=\"text-align: right\";><strong>Elaine and Noel Walters</strong></p>[/quote]\n\n[quote]We had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\n<strong><p style=\"text-align: right\";>Thanks,\nDerek Wall</strong></p>[/quote]\n\n[quote]A very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. \n\n<strong><p style=\"text-align: right\";>Thank-you,\nOtto and Jeannie Ashboth</strong></p>[/quote]\n\n[quote]Thanks for the fantastic photos and for being so patient handling all the young children.\n\n<p style=\"text-align: right\";><strong>Don</strong></p>[/quote]\n\n[quote]The photo session was excellent, Point Walter is so beautiful and David took time to choose the best place for us. Everyone was very helpful. Beautiful photo. Thank-you very much.\n\n<p style=\"text-align: right\";><strong>Rose</strong></p>[/quote]\n\n[quote]Both David and Emily have been great in the service provided as well as their friendliness and being very helpful in every possible way.\n\n<p style=\"text-align: right\";><strong>Ian Ong</strong></p>[/quote]\n\n[quote]Working with teenagers can be a difficult thing, especially when they are not willing participants in the task at hand. But David did a splendid job and our photo is testimony to that. Thank-you for the opportunity to participate.\n\n<p style=\"text-align: right\";><strong>Helen Westcott</strong></p>[/quote]\n\n[quote]Lovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\n<strong><p style=\"text-align: right\";>Many thanks,\nBeryl Price</p></strong>[/quote]\n\n[quote]Very, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\n<strong><p style=\"text-align:right\";>Thanks,\nDionne Smith and family</p></strong>[/quote]\n\n[quote]Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\n<strong><p style=\"text-align: right\";>Thank you,\nJohn Garbin and family </p></strong>[/quote]\n\n[quote]The photos are gorgeous, we had a lot of fun at the river and David made Kyra feel completely at ease.\n\n<strong><p style=\"text-align: right\";>Thank-you,\nChristine, Mal and Kyra</p></strong>[/quote]\n\n[quote]Thank you David and Emily\n\nOur family enjoyed the photo shoot, the professional approach to the job, but the friendly and relaxing time we spent with you. The photos are superb and we will enjoy them till we can’t see any more!\n\nVery best wishes to you both…. \n\n<strong><p style=\"text-align: right\";>Bev Flockart</p></strong>[/quote]\n\n[quote]Thanks so much Emily and David for making me feel so comfortable during the shoot. We all enjoyed ourselves thoroughly. So THANKS!\n\n<strong><p style=\"text-align: right\";>Pamela</p></strong>[/quote]\n\n[quote]Before we arrived at Living Image Photography I was a little nervous, but as soon as we walked into the studio the nervous disappeared. The studio is a relaxing environment where Amy and Simon make you feel very welcome,  so you can be yourself. Derek and I had such a fun afternoon. At our viewing, there was so many good photos to chose from and the viewing room setup made it so easy to be able to select the photos, frames and sizes which would fit perfectly in our home. \nWe are so happy with our photos, and would recommend Living Image Photography to anyone who wants to capture those very special moments in your life – this is their speciality.\n<p style=\"text-align: right\";><strong>-Kim & Derek</strong></p>[/quote]","Testimonials","","inherit","open","open","","18-revision-15","","","2012-09-28 01:23:05","2012-09-28 01:23:05","","18","http://www.livingimagephotography.com.au/18-revision-15/","0","revision","","0");
INSERT INTO wp_posts VALUES("1063","1","2012-10-09 04:35:39","2012-10-09 04:35:39","","poodle_03","","trash","open","open","","poodle_03","","","2012-10-10 00:48:36","2012-10-10 00:48:36","","1054","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/poodle_03.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1128","1","2012-10-10 04:35:21","2012-10-10 04:35:21","","Corporate Headshots","","publish","closed","closed","","corporate-headshots-2","","","2012-10-10 04:35:21","2012-10-10 04:35:21","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=1128","0","gallery","","0");
INSERT INTO wp_posts VALUES("1065","1","2012-10-09 04:36:07","2012-10-09 04:36:07","","1st","","inherit","open","open","","1st","","","2012-10-09 04:36:07","2012-10-09 04:36:07","","1039","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/1st.jpg","1","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1066","1","2012-10-09 04:36:08","2012-10-09 04:36:08","","dog_01","","inherit","open","open","","dog_01","","","2012-10-09 04:36:08","2012-10-09 04:36:08","","1054","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/dog_01.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1126","1","2012-10-10 01:31:43","2012-10-10 01:31:43","","dog_02","","inherit","open","open","","dog_02","","","2012-10-10 01:31:43","2012-10-10 01:31:43","","1054","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/dog_02.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1068","1","2012-10-09 04:43:25","2012-10-09 04:43:25","","Animals Portraits","","inherit","open","open","","880-autosave","","","2012-10-09 04:43:25","2012-10-09 04:43:25","","880","http://www.livingimagephotography.com.au/880-autosave/","0","revision","","0");
INSERT INTO wp_posts VALUES("1069","1","2012-09-28 00:02:15","2012-09-28 00:02:15","","Animals","","inherit","open","open","","880-revision-3","","","2012-09-28 00:02:15","2012-09-28 00:02:15","","880","http://www.livingimagephotography.com.au/880-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("1070","1","2012-10-09 04:49:28","2012-10-09 04:49:28","","Childrens Portraits","","publish","closed","closed","","childrens-portraits","","","2012-10-09 04:49:28","2012-10-09 04:49:28","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=1070","0","gallery","","0");
INSERT INTO wp_posts VALUES("1071","1","2012-10-09 04:51:40","2012-10-09 04:51:40","","children_03","","inherit","open","open","","children_03","","","2012-10-09 04:51:40","2012-10-09 04:51:40","","1070","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/children_03.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1072","1","2012-10-09 04:51:57","2012-10-09 04:51:57","","children_04","","inherit","open","open","","children_04","","","2012-10-09 04:51:57","2012-10-09 04:51:57","","1070","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/children_04.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1073","1","2012-10-09 04:52:09","2012-10-09 04:52:09","","children_05","","inherit","open","open","","children_05","","","2012-10-09 04:52:09","2012-10-09 04:52:09","","1070","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/children_05.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1074","1","2012-10-09 04:52:18","2012-10-09 04:52:18","","children_06","","inherit","open","open","","children_06","","","2012-10-09 04:52:18","2012-10-09 04:52:18","","1070","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/children_06.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1075","1","2012-10-09 04:52:48","2012-10-09 04:52:48","","children_07","","inherit","open","open","","children_07","","","2012-10-09 04:52:48","2012-10-09 04:52:48","","1070","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/children_07.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1076","1","2012-10-09 04:52:58","2012-10-09 04:52:58","","children_01","","inherit","open","open","","children_01","","","2012-10-09 04:52:58","2012-10-09 04:52:58","","1070","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/children_01.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1077","1","2012-10-09 04:53:18","2012-10-09 04:53:18","","children_02","","inherit","open","open","","children_02","","","2012-10-09 04:53:18","2012-10-09 04:53:18","","1070","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/children_02.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1078","1","2012-09-27 02:24:19","2012-09-27 02:24:19","","Kids","","inherit","open","open","","895-revision-4","","","2012-09-27 02:24:19","2012-09-27 02:24:19","","895","http://www.livingimagephotography.com.au/895-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("1079","1","2012-10-09 04:55:02","2012-10-09 04:55:02","","Couple Portraits","","publish","closed","closed","","couple-portraits","","","2012-10-09 04:55:02","2012-10-09 04:55:02","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=1079","0","gallery","","0");
INSERT INTO wp_posts VALUES("1080","1","2012-10-09 04:55:49","2012-10-09 04:55:49","","couple_04","","inherit","open","open","","couple_04","","","2012-10-09 04:55:49","2012-10-09 04:55:49","","1079","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/couple_04.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1081","1","2012-10-09 04:56:24","2012-10-09 04:56:24","","couple_05","","inherit","open","open","","couple_05","","","2012-10-09 04:56:24","2012-10-09 04:56:24","","1079","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/couple_05.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1082","1","2012-10-09 04:56:49","2012-10-09 04:56:49","","couple_01","","trash","open","open","","couple_01","","","2012-10-10 00:43:06","2012-10-10 00:43:06","","1079","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/couple_01.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1083","1","2012-10-09 04:57:06","2012-10-09 04:57:06","","couple_02","","trash","open","open","","couple_02","","","2012-10-10 00:43:06","2012-10-10 00:43:06","","1079","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/couple_02.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1084","1","2012-10-09 04:57:17","2012-10-09 04:57:17","","couple_03","","inherit","open","open","","couple_03","","","2012-10-09 04:57:17","2012-10-09 04:57:17","","1079","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/couple_03.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1085","1","2012-09-20 07:57:17","2012-09-20 07:57:17","The intimacy between two people reflected in an image always invokes a satisfying sense of love, security, and hope.<strong> </strong>Capturing these emotions in a couple’s portrait is our challenge...a challenge that we truly enjoy, and as you can see by our work, very successful at meeting.\n\nOur Couples portraits are the most dynamic and enjoyable type of photographic sessions that we shoot.. Although it often takes the men some time to relax, we find that enjoying the session and the freedom to try different things comes quite easily to them soon enough.\n\nCreating a fun and relaxed atmosphere is the key to allowing the true character of each individual to surface. Then, we are able to witness the true interaction between the couple - those special looks, squeezes and kisses that mean so much but are often overlooked in a couple’s portrait. The special way your man holds your hand, or the way your partner rests her head on your chest, these are the details that tell the story.\n\nOur work is designed to reflect you as a couple, not merely shots of two people. There’s an important distinction between the two and that is where having a professional photographer create artistic portraits of you makes all the difference. We understand how to capture people at their best and how to reflect the intimacy that you share.  Our couples\' portraits are almost a study on human nature.\n\nThe technical aspect of our work is very precise; we have all spent many years perfecting our art, which allows us to concentrate on the emotion and composition of a shot.  You can rest assured that we will capture a high quality photography ready to be printed at whatever size you choose.\n\nIf you are interested in our work please give us a call to discuss your options.  Remember, you can design the type of photographs we take or you can leave us to our creative ways. Often we find the middle ground between your design and our creativity results in truly outstanding portraits that you will treasure.","Couple Portraits","","inherit","open","open","","79-revision-4","","","2012-09-20 07:57:17","2012-09-20 07:57:17","","79","http://www.livingimagephotography.com.au/79-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("1086","1","2012-10-09 05:00:22","2012-10-09 05:00:22","","Family Portraits","","publish","closed","closed","","family-portraits","","","2012-10-09 05:00:22","2012-10-09 05:00:22","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=1086","0","gallery","","0");
INSERT INTO wp_posts VALUES("1087","1","2012-10-09 05:01:00","2012-10-09 05:01:00","","family_01","","inherit","open","open","","family_01","","","2012-10-09 05:01:00","2012-10-09 05:01:00","","1086","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/family_01.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1088","1","2012-10-09 05:01:11","2012-10-09 05:01:11","","family_02","","inherit","open","open","","family_02","","","2012-10-09 05:01:11","2012-10-09 05:01:11","","1086","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/family_02.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1089","1","2012-10-09 05:01:31","2012-10-09 05:01:31","","family_03","","inherit","open","open","","family_03","","","2012-10-09 05:01:31","2012-10-09 05:01:31","","1086","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/family_03.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1090","1","2012-10-09 05:01:37","2012-10-09 05:01:37","","family_04","","trash","open","open","","family_04","","","2012-10-10 00:35:44","2012-10-10 00:35:44","","1086","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/family_04.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1091","1","2012-09-21 10:30:52","2012-09-21 10:30:52","The best way to remember your family as they are now is with a creative family portrait.<strong> </strong>It’s important to capture your family as they are now, as time moves so fast, and kids grow up so quickly.\n\nCreating stunning family portraits for our clients remains the true passion of our studio. We truly enjoy the time we spend with our clients, capturing unique portraits of them together as their family unit. Our work reflects the passion we have for creating this wonderful work.  Every family is different, made up of so many different characters, that it really makes our work very interesting.\n\nA great way to spend a few hours, we find, is experiencing our clients together as a family. We create a relaxed environment where the personalities of family members come out, allowing us to capture the interaction of the family as they truly are.\n\nBe proud of your family and display a unique family portrait in your home - your friends and colleagues will be envious.\n\nWe have a host of display options for your family portraits designed to compliment your home, which all come with a life time guarantee.\n\nContact us now to arrange a family portrait consultation so you can spend some important time with us; exploring your options and planning your upcoming family portrait.","Family Portraits","","inherit","open","open","","81-revision-4","","","2012-09-21 10:30:52","2012-09-21 10:30:52","","81","http://www.livingimagephotography.com.au/81-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("1092","1","2012-10-09 05:03:44","2012-10-09 05:03:44","","Implied Nude","","publish","closed","closed","","implied-nude","","","2012-10-09 05:03:44","2012-10-09 05:03:44","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=1092","0","gallery","","0");
INSERT INTO wp_posts VALUES("1093","1","2012-10-09 05:04:10","2012-10-09 05:04:10","","implied_nude_and_nude_01","","inherit","open","open","","implied_nude_and_nude_01","","","2012-10-09 05:04:10","2012-10-09 05:04:10","","1092","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/implied_nude_and_nude_01.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1094","1","2012-10-09 05:04:16","2012-10-09 05:04:16","","implied_nude_and_nude_02","","inherit","open","open","","implied_nude_and_nude_02","","","2012-10-09 05:04:16","2012-10-09 05:04:16","","1092","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/implied_nude_and_nude_02.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1095","1","2012-09-28 00:48:33","2012-09-28 00:48:33","","Implied Nude & Nude","","inherit","open","open","","893-revision-6","","","2012-09-28 00:48:33","2012-09-28 00:48:33","","893","http://www.livingimagephotography.com.au/893-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("1096","1","2012-10-09 05:06:40","2012-10-09 05:06:40","","Individual Portraits","","publish","closed","closed","","individual-portraits","","","2012-10-09 05:06:40","2012-10-09 05:06:40","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=1096","0","gallery","","0");
INSERT INTO wp_posts VALUES("1111","1","2012-10-09 23:50:39","2012-10-09 23:50:39","","individual_hansen_01","","trash","open","open","","individual_hansen_01","","","2012-10-10 00:13:10","2012-10-10 00:13:10","","1096","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/individual_hansen_01.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1098","1","2012-10-09 05:07:08","2012-10-09 05:07:08","","individual_03","","inherit","open","open","","individual_03","","","2012-10-09 05:07:08","2012-10-09 05:07:08","","1096","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/individual_03.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1099","1","2012-10-09 05:07:17","2012-10-09 05:07:17","","individual_01","","inherit","open","open","","individual_01","","","2012-10-09 05:07:17","2012-10-09 05:07:17","","1096","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/individual_01.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1100","1","2012-09-20 07:44:37","2012-09-20 07:44:37","Celebrate you! Time moves on constantly, and at certain points in our life we do take pause to think about ourselves; where we are now and what we have achieved. A great way to permanently remember these moments and celebrate yourself is with an Individual Portrait collection from us.\n\nWe design your Individual Portrait session to suit you and your personality, often with a mix of creative and candid portraits - and maybe something dramatic if you\'re daring... Our very personal photographers will chat with you and spend some quality time working with you to create a collection of amazing individual portraits that are YOU.\n\nHave a look through some of our examples below, we\'re always pushing the boundaries and trying new things with our Individual portraits, so if you have a few ideas please bring them along.\n\nJump on board now, <a href=\"http://www.livingimagephotography.com.au/bookings/\">contact us</a> and we\'ll get your adventure started - soon you will be enjoying your Individual portrait forever!","Individual Portraits","","inherit","open","open","","83-revision-5","","","2012-09-20 07:44:37","2012-09-20 07:44:37","","83","http://www.livingimagephotography.com.au/83-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("1101","1","2012-10-09 05:08:53","2012-10-09 05:08:53","","Newborn Portraits","","publish","closed","closed","","newborn-portraits","","","2012-10-09 05:08:53","2012-10-09 05:08:53","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=1101","0","gallery","","0");
INSERT INTO wp_posts VALUES("1102","1","2012-10-09 05:09:39","2012-10-09 05:09:39","","newborn_05","","inherit","open","open","","newborn_05","","","2012-10-09 05:09:39","2012-10-09 05:09:39","","1101","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/newborn_05.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1103","1","2012-10-09 05:10:06","2012-10-09 05:10:06","","newborn_01","","inherit","open","open","","newborn_01","","","2012-10-09 05:10:06","2012-10-09 05:10:06","","1101","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/newborn_01.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1104","1","2012-10-09 05:10:21","2012-10-09 05:10:21","","newborn_02","","inherit","open","open","","newborn_02","","","2012-10-09 05:10:21","2012-10-09 05:10:21","","1101","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/newborn_02.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1105","1","2012-10-09 05:10:32","2012-10-09 05:10:32","","newborn_03","","inherit","open","open","","newborn_03","","","2012-10-09 05:10:32","2012-10-09 05:10:32","","1101","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/newborn_03.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1106","1","2012-10-09 05:10:36","2012-10-09 05:10:36","","newborn_04","","inherit","open","open","","newborn_04","","","2012-10-09 05:10:36","2012-10-09 05:10:36","","1101","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/newborn_04.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1107","1","2012-09-21 07:05:40","2012-09-21 07:05:40","We cherish our newborns - your precious new person, with their chubby little hands, tiny-tiny feet, funny expressions and big-big yawns. Do they not make your heart glow? At such an important stage of life it is important to capture these little ones as they are now. There’s no better way than to have a unique newborn portrait session with us.\n\nOur creative newborn portrait sessions allow us to capture your wonderful child in their very early stage of life. We focus our attention on their unique facial character, dimples and the sometimes forgotten details like their feet, their hands and chubby bottoms.\n\nOften the window of opportunity is very small when photographing newborn portraits. Within the first 2 weeks from birth is the best time. We also try to plan your newborn portrait session for straight after a feed or just before sleep so we can create beautiful peaceful images that you and your family will treasure.\n\nSometimes capturing babies at this stage can take a couple of goes; they are certainly not predictable and work to their own routine, not anyone else’s. We are very well aware of the demands newborns put on parents and we gear ourselves towards creating a relaxed atmosphere so both parent and child can feel at ease. We use a warm, hygienic and private studio and do not use flash lighting wherever possible. This experience helps us to create timeless images of the beautiful newborn children that grace our studio.\n\nPlease be sure to contact us for a friendly chat about our newborn portrait photography, you may wish to book a time at this early stage to visit the studio and experience our many different photographic styles that we have on offer. We look forward to meeting with you very soon.\n","Newborn Portraits","","inherit","open","open","","85-revision-5","","","2012-09-21 07:05:40","2012-09-21 07:05:40","","85","http://www.livingimagephotography.com.au/85-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("1108","1","2012-10-09 05:20:34","2012-10-09 05:20:34","","Pregnancy Portraits","","publish","closed","closed","","pregnancy-portraits","","","2012-10-09 05:20:34","2012-10-09 05:20:34","","0","http://www.livingimagephotography.com.au/?post_type=gallery&#038;p=1108","0","gallery","","0");
INSERT INTO wp_posts VALUES("1109","1","2012-10-09 05:21:10","2012-10-09 05:21:10","","pregnancy_01","","inherit","open","open","","pregnancy_01","","","2012-10-09 05:21:10","2012-10-09 05:21:10","","1108","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/pregnancy_01.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1110","1","2012-09-20 08:05:27","2012-09-20 08:05:27","Pregnancy is a very special time in a woman’s life that can be remembered forever with a beautiful, artistic maternity portrait. Whether this is your 1st child or your 4th, it’s still an amazing experience that should be honoured with great images of this special time.\n\nIn a safe, comfortable and relaxed environment, we encourage our expectant clients to have fun with their photographic session. Wear as much or as little clothing that you are comfortable with, and bring your partner and other children to share in this special moment.\n\nWe find the best time to photograph our expecting mums is between 6-10 weeks prior to the birth.  If you are closer to the delivery date, please call us now so we can fit you in as soon as possible – you don’t want to miss this wonderful opportunity.\n\nOur pre-natal photography is designed to your taste - you have full control over the look of your images. We can create stunning black and white studio shots or be more daring and work with environmental landscapes – the options are endless.\n\nPlanning your pregnancy photographs is crucial to achieving the look you desire.  Thus, we encourage you to call us for a friendly chat and a visit to the studio to plan your pregnancy portrait session and meet us in person.\n\nWe hope you enjoy viewing our work and look forward to hearing from you very soon.  Please don’t miss this opportunity to capture you as you are now.\n","Pregnancy Portraits","","inherit","open","open","","87-revision-4","","","2012-09-20 08:05:27","2012-09-20 08:05:27","","87","http://www.livingimagephotography.com.au/87-revision-4/","0","revision","","0");
INSERT INTO wp_posts VALUES("1112","1","2012-10-10 00:10:14","2012-10-10 00:10:14","","individual_hansen_00","","trash","open","open","","individual_hansen_00","","","2012-10-10 00:13:10","2012-10-10 00:13:10","","1096","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/individual_hansen_00.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1113","1","2012-10-10 00:15:48","2012-10-10 00:15:48","","individual_hansen_01","","inherit","open","open","","individual_hansen_01-2","","","2012-10-10 00:15:48","2012-10-10 00:15:48","","1096","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/individual_hansen_011.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1114","1","2012-10-10 00:26:37","2012-10-10 00:26:37","","pregnancy_02","","inherit","open","open","","pregnancy_02","","","2012-10-10 00:26:37","2012-10-10 00:26:37","","1108","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/pregnancy_02.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1115","1","2012-10-10 00:26:44","2012-10-10 00:26:44","","pregnancy_03","","inherit","open","open","","pregnancy_03","","","2012-10-10 00:26:44","2012-10-10 00:26:44","","1108","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/pregnancy_03.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1116","1","2012-10-10 00:26:50","2012-10-10 00:26:50","","pregnancy_04","","inherit","open","open","","pregnancy_04","","","2012-10-10 00:26:50","2012-10-10 00:26:50","","1108","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/pregnancy_04.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1117","1","2012-10-10 00:36:21","2012-10-10 00:36:21","","family_04","","inherit","open","open","","family_04-2","","","2012-10-10 00:36:21","2012-10-10 00:36:21","","1086","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/family_041.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1118","1","2012-10-10 00:36:28","2012-10-10 00:36:28","","family_00","","inherit","open","open","","family_00","","","2012-10-10 00:36:28","2012-10-10 00:36:28","","1086","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/family_00.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1119","1","2012-10-10 00:43:42","2012-10-10 00:43:42","","couple_02","","inherit","open","open","","couple_02-2","","","2012-10-10 00:43:42","2012-10-10 00:43:42","","1079","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/couple_021.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1120","1","2012-10-10 00:44:01","2012-10-10 00:44:01","","couple_01","","inherit","open","open","","couple_01-2","","","2012-10-10 00:44:01","2012-10-10 00:44:01","","1079","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/couple_011.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1121","1","2012-10-10 01:22:14","2012-10-10 01:22:14","","poodle_03","","inherit","open","open","","poodle_03-2","","","2012-10-10 01:22:14","2012-10-10 01:22:14","","1054","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/poodle_031.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1122","1","2012-10-10 01:22:27","2012-10-10 01:22:27","","dog_03","","inherit","open","open","","dog_03-2","","","2012-10-10 01:22:27","2012-10-10 01:22:27","","1054","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/dog_031.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1123","1","2012-10-10 01:22:50","2012-10-10 01:22:50","","dog_04","","inherit","open","open","","dog_04-2","","","2012-10-10 01:22:50","2012-10-10 01:22:50","","1054","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/dog_041.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1124","1","2012-10-10 01:23:00","2012-10-10 01:23:00","","dog_05","","inherit","open","open","","dog_05","","","2012-10-10 01:23:00","2012-10-10 01:23:00","","1054","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/dog_05.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1125","1","2012-10-10 01:28:17","2012-10-10 01:28:17","","cat_01","","inherit","open","open","","cat_01-2","","","2012-10-10 01:28:17","2012-10-10 01:28:17","","1054","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/cat_011.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1129","1","2012-10-10 04:36:32","2012-10-10 04:36:32","","corporate_02","","inherit","open","open","","corporate_02","","","2012-10-10 04:36:32","2012-10-10 04:36:32","","1128","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/corporate_02.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1130","1","2012-10-10 04:36:37","2012-10-10 04:36:37","","corporate_01","","inherit","open","open","","corporate_01","","","2012-10-10 04:36:37","2012-10-10 04:36:37","","1128","http://www.livingimagephotography.com.au/wp-content/uploads/2012/10/corporate_01.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1131","1","2012-09-22 00:55:18","2012-09-22 00:55:18","Getting your professional image right is very important, and having a corporate headshot that mimics your image is just as important.\n\nWe take the time to create a host of different portrait poses and looks to achieve the exact representation that you wish to portray in your corporate headshot.\n\nOur corporate headshots can be simple plain white background, great for business cards and for clipping, or we can create more dynamic portraits that represent more personality and feel for your corporate image. Chat with us about your options.\n\nWe deliver your corporate headshots promptly, with all digital files colour corrected in super high resolution ready for print or digital publishing.\n\nWe cater for individuals or whole teams, on site or in our centrally located studios. Have a look through our corporate headshot gallery below and <a href=\"http://www.livingimagephotography.com.au/bookings/\">contact us</a> for more information.","Corporate Headshots","","inherit","open","open","","77-revision-8","","","2012-09-22 00:55:18","2012-09-22 00:55:18","","77","http://www.livingimagephotography.com.au/77-revision-8/","0","revision","","0");
INSERT INTO wp_posts VALUES("1133","1","2012-09-26 03:53:14","2012-09-26 03:53:14","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120. <strong><a href=\"http://shootthedog.com.au/book-now/\">>> Book Now! <<</a></strong>\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" style=\"float:left\"></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" style=\"float:right\"></a>\n\n","Shoot the Dog","","inherit","open","open","","656-revision-42","","","2012-09-26 03:53:14","2012-09-26 03:53:14","","656","http://www.livingimagephotography.com.au/656-revision-42/","0","revision","","0");
INSERT INTO wp_posts VALUES("1134","1","2012-10-10 05:28:08","2012-10-10 05:28:08","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120. <strong><a href=\"http://shootthedog.com.au/book-now/\" target=\"_blank\">>> Book Now! <<</a></strong>\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" style=\"float:left\"></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" style=\"float:right\"></a>\n\n","Shoot the Dog","","inherit","open","open","","656-revision-43","","","2012-10-10 05:28:08","2012-10-10 05:28:08","","656","http://www.livingimagephotography.com.au/656-revision-43/","0","revision","","0");
INSERT INTO wp_posts VALUES("1135","1","2012-10-10 05:28:25","2012-10-10 05:28:25","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120. <strong><a href=\"http://shootthedog.com.au/book-now/\" target=\"_blank\">>> Book Now! <<</a></strong>\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" style=\"float:left\"></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" style=\"float:right\"></a>\n\n","Shoot the Dog","","inherit","open","open","","656-revision-44","","","2012-10-10 05:28:25","2012-10-10 05:28:25","","656","http://www.livingimagephotography.com.au/656-revision-44/","0","revision","","0");
INSERT INTO wp_posts VALUES("1136","1","2012-10-10 05:30:14","2012-10-10 05:30:14","<font color=\"#ff8000\"><h1>ANNOUNCEMENT</h1></font>\n<a href=\"http://www.shootthedog.com.au/\" target=\"_blank\"><img class=\"alignright size-full wp-image-590\" title=\"Shoot the Dog\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/shoothedog1.png\" alt=\"\" width=\"\" height=\"\" /></a>\nLiving Image Photography is looking for NSW most loved pets to be photographed and featured in a limited edition, hard cover coffee table book.\n\nPages in this coffee table book are exclusively available for a limited number of pet only. If you would love YOUR PETS to be involved in a studio session for this book, simply fill in our online application form to apply.\n\nA $100 participation fee is required upon acceptance of your application. Your participation fee is 100% donated directly to Maggie’s Rescue NSW; a registered animal welfare charity & cooperative of carers that support animals in need of homes. Once Shoot the Dog is published it will be available for you to purchase for $120. <strong><a href=\"http://shootthedog.com.au/book-now/\" target=\"_blank\">>> Book Now! <<</a></strong>\n\n<div class=\"cleared\"></div>\n\n<a href=\"http://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer/sharer.php?app_id=309437425817038&sdk=joey&u=http%3A%2F%2Fshootthedog.com.au%2F&display=popup\" target=\"_blank\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/fb-share-button.png\"></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.facebook.com/livingimagesydney\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/facebook.png\" style=\"float:left\"></a><a href=\"http://www.maggiesrescue.org/\" target=\"_blank\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/maggie.png\" style=\"float:right\"></a>\n\n","Shoot the Dog","","inherit","open","open","","656-revision-45","","","2012-10-10 05:30:14","2012-10-10 05:30:14","","656","http://www.livingimagephotography.com.au/656-revision-45/","0","revision","","0");
INSERT INTO wp_posts VALUES("1138","1","2012-09-29 00:22:39","2012-09-29 00:22:39","[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<div align=\"right\">\n<a href=\"https://www.facebook.com/livingimagesydney?ref=ts\" target=\"_blank\"><img width=\"152\" height=\"48\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/visit-us.png\" /></a>\n</div>\n\n<hr />\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-53","","","2012-09-29 00:22:39","2012-09-29 00:22:39","","6","http://www.livingimagephotography.com.au/6-revision-53/","0","revision","","0");
INSERT INTO wp_posts VALUES("1139","1","2012-10-10 06:45:45","2012-10-10 06:45:45","<div align=\"left\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/simon/simon_01.png\" />\n</div>\n[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<div align=\"right\">\n<a href=\"https://www.facebook.com/livingimagesydney?ref=ts\" target=\"_blank\"><img width=\"152\" height=\"48\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/visit-us.png\" /></a>\n</div>\n\n<hr />\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-54","","","2012-10-10 06:45:45","2012-10-10 06:45:45","","6","http://www.livingimagephotography.com.au/6-revision-54/","0","revision","","0");
INSERT INTO wp_posts VALUES("1140","1","2012-10-10 06:50:06","2012-10-10 06:50:06","","LivingimgBackground3","","inherit","open","open","","livingimgbackground3","","","2012-10-10 06:50:06","2012-10-10 06:50:06","","643","http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingimgBackground3.jpg","1","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("1141","1","2012-10-10 06:47:00","2012-10-10 06:47:00","<div align=\"left\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/simon/simon_01.png\" />\n</div>\n[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<div align=\"right\">\n<a href=\"https://www.facebook.com/livingimagesydney?ref=ts\" target=\"_blank\"><img width=\"152\" height=\"48\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/visit-us.png\" /></a>\n</div>\n\n<hr />\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-55","","","2012-10-10 06:47:00","2012-10-10 06:47:00","","6","http://www.livingimagephotography.com.au/6-revision-55/","0","revision","","0");
INSERT INTO wp_posts VALUES("1143","1","2012-09-26 05:16:20","2012-09-26 05:16:20","<h5>\'PLAY FAVORITE\' COMPETITION:</h5>\nEntry is open only to persons eighteen years and older, who are residents of Victoria or New South Wales and have <strong>not won a competition, prize or promotional item, through Living Image Photography in the last twelve months.</strong>\n\nTo enter, the completed online form must be received at the studio by the end of the promotion date. Entries not properly completed will be rejected. Late entries will not be accepted. Prize winners will be notified by mail, email or phone. The major prize winner will be the client with the most valid votes. The Major Prize winner will be entitled to up to $2000 worth of products from Living Image, to be redeemed from their recent session, to be used in one transaction, any unused balance will be forfeited. The Major Prize is valid for a period of three months from the date of notification. Consolation Prizes will have an expiry date printed on the Gift Certificate. Prizes are non transferable, not exchangeable or redeemable in whole or in part for any cash equivalent. Prizes cannot be used in conjunction with any other offer or promotion.\n<h5>APPOINTMENT HOLDING FEE/ DEPOSITS</h5>\n<strong>A holding fee / deposit of $50 will be required to secure and hold your appointment. This holding fee ensures your commitment to the scheduled appointment.</strong>\nThe holding fee / deposit will be returned to you at the presentation of the photographs following the photo shoot at the Ordering Session, provided that you have completed your appointment at the correctly scheduled time and date. Failure to attend or complete your scheduled appointment may result in the cancellation of any prize and the forfeiture of the holding fee at the sole discretion of studio management.\n<h5>GIFT CERTIFICATES/PROMOTIONAL VOUCHERS:</h5>\nMust be redeemed by the holder prior to the expiry date, provided the holder has not redeemed a Competition Prize, Gift Certificate or Promotional Voucher with Living Image Photography in the last 6 months (date calculated from the previous sitting date). Prizes are for domestic portraiture and can not be used for commercial photography.\n<h5>TRANSFERABLE:</h5>\nPromotional Vouchers and Gift Certificates <strong>ARE</strong> transferable to family or friends. They are not exchangeable or redeemable in whole or in part for any cash equivalent. The vouchers and gift certificates cannot be used in conjunction with any other offer, prize or promotion. Only one (1) Gift Certificate or Promotional voucher/certificate can be used at a time.  You cannot use the gift certificate or promotional voucher to purchase products from any other photo sessions.\n<h5>FACEBOOK COMPETITION:</h5>\nBy entering our Facebook competition, the entrant acknowledges that the promotion is in no way sponsored, endorsed, administered by or associated with, Facebook in any way.\n<h5>ARTISTIC CONTROL:</h5>\nLiving Image Photography reserves artistic control over the design and content of each photoshoot. We may, at our discretion, decline to create certain types or styles of photography. We reserve the right to refuse to produce images at some sizes or combinations of sizes if we believe such images would or could be detrimental to our reputation as a professional studio or as professional photographers.\n\n<strong>Clients should discuss their requirements with the studio prior to the photoshoot.</strong>\n<h5>APPOINTMENT RESCHEDULE POLICY:</h5>\n<strong>Gift Certificates and Promotional Vouchers entitle the holder to a SINGLE APPOINTMENT ONLY. Once made, an appointment can not be rescheduled and the Gift Certificate or Promotional Voucher is deemed to have been used in full at that original appointment time and date.</strong>\n\n*NOTE: In exceptional circumstances, management may, at their sole discretion, reschedule an appointment and carry forward the Gift Certificate and holding fee / deposit.\n<h5>NO SHOW POLICY:</h5>\nNon attendance (NO SHOW) at an appointment without notice, will result in the forfeiture of the holding / deposit fee. The Gift Certificate or Promotional Voucher is then deemed to have been used in full.<strong>Living Image Photography reserves the right to then charge the appointment holder the full Sitting Fee of $150 (less the $50 holding deposit).</strong>\n<h5>COPYRIGHT:</h5>\nUnrestricted Copyright to all images created during the photo shoot that forms part of the Gift Certificate or Promotional Voucher or Referral Voucher is deemed to belong solely to Living Image Photography.\n<h5>PRIVACY:</h5>\nBy commissioning Living Image Photography to create images or by entering any promotion or competition, clients and or entrants understand and agree that Living Image Photography may use the information provided by them in accordance with National Privacy Principles. <a href=\"http://www.privacy.gov.au/\" target=\"_blank\">http://www.privacy.gov.au</a>","Terms and Conditions","","inherit","open","open","","573-revision-5","","","2012-09-26 05:16:20","2012-09-26 05:16:20","","573","http://www.livingimagephotography.com.au/573-revision-5/","0","revision","","0");
INSERT INTO wp_posts VALUES("1144","1","2012-09-26 04:19:07","2012-09-26 04:19:07","Everlasting…\n\nJust the word itself is so beautiful &amp; timeless. The knowledge that one object can pass through with you for your entire life, enduring your life changes but staying forever unchangable, captured in time.\n\nThis is why we create Fine Art Albums. Albums that are constructed completely by hand and use only the finest materials available. Utilising time proven and traditional album binding techniques, your album is sewn, glued &amp; constructed by local album manufacturers. Making it forever unchangable, forever timeless &amp; forever yours to cherish.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><h6>Traditional Fine Art Albums</h6><img class=\"alignleft size-full wp-image-590\" title=\"Traditional Fine Art Album\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/portrait_alb1.jpg\" alt=\"\" width=\"\" height=\"\" /></a>A stunning choice to display your favourite portraits, the Portrait album is available in a wide variety of cover materials, and every page is constructed with fine linen mats that frame your large portraits. Perfect for a family portrait album.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Traditional-Fine-Art-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><h6>Designer Magazine Albums</h6><img class=\"alignleft size-full wp-image-590\" title=\"Designer Magazine Albums\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/designer_alb2.jpg\" alt=\"\" width=\"\" height=\"\" /></a>\nA modern and contemporary album, the Designer incorporates full width \"borderless\" photographs that allow for a variety of design options. The Designer album also comes in a variety of cover options.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Designer-Magazine-Album.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n","Fine Art Albums","","inherit","open","open","","578-revision-26","","","2012-09-26 04:19:07","2012-09-26 04:19:07","","578","http://www.livingimagephotography.com.au/578-revision-26/","0","revision","","0");
INSERT INTO wp_posts VALUES("1145","1","2012-09-22 01:04:39","2012-09-22 01:04:39","A beautifully designed hand-made canvas box including image-wrap for spine and front cover & one desktop mini-easel; forming a timeless memorable time capsule to be treasured through many lifetimes.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><h6>Collections Box</h6><img class=\"alignleft size-full wp-image-590\" title=\"Collections Box\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nThis is a beautiful way to keep your treasured portraits, your collections box consists of your favourite 10 images from your portrait session, which are individually mounted behind an 11x14inch framers mount. This is a popular display option.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><strong>[take a closer look here]</strong></a>\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/MountedPortraits\" target=\"_blank\"><h6>Mounted Portraits</h6><img class=\"alignleft size-full wp-image-590\" title=\"Mounted Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/MountedPortraits_thumbs.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nam tempor auctor aliquet. Ut quis felis et mi pellentesque mollis id a felis. Nullam eleifend, tellus at malesuada vulputate, dolor ipsum feugiat nisl, sit amet rhoncus arcu erat id mauris.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CollectionsBox.jpg\" target=\"_blank\"><strong>[take a closer look here]</strong></a>\n","Fine Art Collections Box","","inherit","open","open","","583-revision-6","","","2012-09-22 01:04:39","2012-09-22 01:04:39","","583","http://www.livingimagephotography.com.au/583-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("1146","1","2012-09-22 01:09:49","2012-09-22 01:09:49","Displaying portraits on the walls of your rooms can truly transform the space. Wall portraits will individualise your room, a great way to bring life and character to a space that lacks that certain \"something\".</strong> A brilliant alternative to art, our stunning wall portraits are an easy, and often cheaper way to redecorate your rooms.\n\nThe wall collections below have been professionally designed to compliment your living spaces, telling a story through your portraits as a whole. Your wall collections are available in a range of different finishes to suit your existing decor, read more below.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><h6>Visage</h6><img class=\"alignleft size-full wp-image-590\" title=\"Visage\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Visage_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA collection of 4 square framed images in a gorgeous chunky style moulding with a colourful mat. The Visage is the perfect collection for a child\'s room or a small feature wall in your home. Children\'s portraits look great in this collection.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Visage.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><h6>Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Amour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\n1 large portrait, flanked on one side by two more portraits. This collection suits bedrooms and living areas, and is perfect for a couple\'s portrait or family portrait. The Amour is available in 2 finishes: Acrylic and ArtMount.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Amour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><h6>Plus D\'Amour</h6><img class=\"alignleft size-full wp-image-590\" title=\"Plus D\'Amour\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Plus\'DAmour_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\nThis beautiful collection includes 5 portraits, with one main feature, surrounded by 4 complimentary portraits. The Plus D\'Amour will liven a medium to large living room, and even works beutifully in a master bedroom. It\'s perfectly suited to family portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-PlusdAmour.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><h6>Trois</h6><img class=\"alignleft size-full wp-image-590\" title=\"Trois\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Trois_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\nThe Trois is a great addition to any room, with three vertical panels and size options for 10inch to 40inch prints it\'s designed to suit all spaces. The Trois is the ideal choice for family portraits, children\'s portraits or couples, it makes a real statement.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Trois.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><h6>Enjoue</h6><img class=\"alignleft size-full wp-image-590\" title=\"Enjoue\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Enjoue_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\nFor a wonderful alternative to our Trois portrait collection, the Enjoue provides you with 1 landscape, or horizontal portrait flanked by a vertical portrait on each side. The Enjoue collection will make an amazing impact in your rooms, suited to medium and larger sized spaces.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Enjoue.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><h6>Unique</h6><img class=\"alignleft size-full wp-image-590\" title=\"Unique\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Unique_thumb_img.png\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA Unique collection is our option for single portraits of any size. A wonderful option to make a blod statement with one large portrait. From our 10inch portraits up to our large \"sofa sized\" 40inch portraits the choice is yours!<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/LivingImage-Collections-Unique.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<h1>Finishes</h1>\n\nWe have a range of alternative finishes for your portraits that are available on most of our collections. Our range of finishes are designed to suit any style of decor. \n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CanvasPortraits.jpg\" target=\"_blank\"><h6>Canvas</h6><img class=\"alignleft size-full wp-image-590\" title=\"Canvas Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Canvas_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nContemporary and timeless, our canvas finish is a brilliant way to display your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/CanvasPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ArtMountPortraits.jpg\" target=\"_blank\"><h6>Art Mount</h6><img class=\"alignleft size-full wp-image-590\" title=\"Art Mount Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Art-Mount_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA great alternative finish for your portraits, perfect for a large collection of portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/ArtMountPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/AcrylicPortraits.jpg\" target=\"_blank\"><h6>Acrylic</h6><img class=\"alignleft size-full wp-image-590\" title=\"Acrylic Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Acrylic_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nA unique and contemporary display option for your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/AcrylicPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>\n\n&nbsp;\n&nbsp;\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FramedPortraits.jpg\" target=\"_blank\"><h6>Framed</h6><img class=\"alignleft size-full wp-image-590\" title=\"Framed Portraits\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/Framed-Portraits_thumb.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>\n<br />\nStunning, traditional and timeless framing finishes for your portraits.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/FramedPortraits.jpg\" target=\"_blank\"><strong>[take a closer look]</strong></a>","Fine Art Decor","","inherit","open","open","","580-revision-17","","","2012-09-22 01:09:49","2012-09-22 01:09:49","","580","http://www.livingimagephotography.com.au/580-revision-17/","0","revision","","0");
INSERT INTO wp_posts VALUES("1147","1","2012-09-22 06:02:24","2012-09-22 06:02:24","<strong>A portrait experience from us is the perfect gift for a friend or a loved one.</strong> We have beautifully presented gift certificates available, that can also be personalised with a message from you. Please call the studio to organise your gift certificate over the phone. We will express post it to you so you have it as soon as possible, or you are welcome to pop into the studio and collect it in person.\n\n&nbsp;\n\n<a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><h6>Gift Certificates</h6><img class=\"alignleft size-full wp-image-590\" title=\"Gift Certificates\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate_thumbs.jpg\" alt=\"\" width=\"170\" height=\"170\" /></a>Our gift certificates are beautifully printed on heavy card stock, creased and sealed with a bow at the back. The gift certificates are personalised with your name, the recipients and a message if you wish. Certificates are available in any amount you wish.<br /> <a href=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/GiftCertificate.jpg\" target=\"_blank\"><strong>[take a look here]</strong></a> &nbsp; <a href=\"http://www.livingimagephotography.com.au/gift-certificate-order-form/\" target=\"_blank\"><strong>[order now!]</strong></a>","Gifts","","inherit","open","open","","587-revision-9","","","2012-09-22 06:02:24","2012-09-22 06:02:24","","587","http://www.livingimagephotography.com.au/587-revision-9/","0","revision","","0");
INSERT INTO wp_posts VALUES("1148","1","2012-09-26 05:16:34","2012-09-26 05:16:34","[gravityform id=2 title=false description=true]","Gift Certificate Order Form","","inherit","open","open","","845-revision-3","","","2012-09-26 05:16:34","2012-09-26 05:16:34","","845","http://www.livingimagephotography.com.au/845-revision-3/","0","revision","","0");
INSERT INTO wp_posts VALUES("1149","1","2012-09-26 05:16:47","2012-09-26 05:16:47","An important part of the process is the cost. We feel it’s important that you receive the most value for your investment, and whatever you decide to purchase fits within your budget. We encourage you to feel comfortable with your order.\n\nAll of the work that we produce for you is finished artwork, ready to hang or display, and comes with a life time guarantee. With this in mind here is a guide to our pricing.\n\nOur portrait fee is $150, which includes;\n<ul>\n	<li>Your pre portrait consultation in our studio or on the phone (allow 30mins),</li>\n	<li>Your creative portrait session, in our studio (allow an hour and a half),</li>\n	<li>and your ordering session, in our studio (allow up to 2 hours)</li>\n</ul>\nWe aim to capture anywhere between 40 to 100 <em><span style=\"text-decoration: underline;\">different</span></em> images during your portrait session. We will take you through the whole collection during your ordering session for you to select your absolute favourites.\n\nOur 10 inch matted portraits start from as little as $195. We have a whole range display options to suit all price points and budgets. Our display options include;\n<ul>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/fine-art-decor/\">Wall Portraits &amp; Collections</a></li>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/fine-art-albums/\">Hand Bound Albums &amp; Story Books</a></li>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/fine-art-collections-box/\">Desktop Portraits &amp; Matted Prints</a></li>\n	<li><a href=\"http://www.livingimagephotography.com.au/decor/gifts/\">Gift Certificates for your friends and loved ones</a></li>\n</ul>\n<span style=\"color: #ff0000;\">Take this opportunity to <a href=\"http://www.livingimagephotography.com.au/bookings/\">book your session now</a>, and start this exciting journey.</span>","Pricing","","inherit","open","open","","15-revision-7","","","2012-09-26 05:16:47","2012-09-26 05:16:47","","15","http://www.livingimagephotography.com.au/15-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("1150","1","2012-10-06 00:51:11","2012-10-06 00:51:11","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\">\n[quote]Just wanted to let both you and Simon know how wonderful my pictures are. I gave them to Tim on the weekend as a thank you for all his support over the last five years of my degree and also because it was the 35th anniversary of when we first started dating.\n\nHe LOVES the photos, really thinks they are amazing!!!!!!! Not only is he impressed with how I look he is also hugely impressed with the quality of the images, the presentation and just how professional it all looks\n\nThank you again for everything. I will definitely recommend you to everyone I meet.\n<p style=\"text-align: right\";><strong>-Sharon Bickford</strong></p>[/quote]\n<br />\n[quote]Before we arrived at Living Image Photography I was a little nervous, but as soon as we walked into the studio the nervous disappeared. The studio is a relaxing environment where Amy and Simon make you feel very welcome,  so you can be yourself. Derek and I had such a fun afternoon. At our viewing, there was so many good photos to chose from and the viewing room setup made it so easy to be able to select the photos, frames and sizes which would fit perfectly in our home. \nWe are so happy with our photos, and would recommend Living Image Photography to anyone who wants to capture those very special moments in your life – this is their speciality.\n<p style=\"text-align: right\";><strong>-Kim & Derek</strong></p>[/quote]\n<br />\n[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met</p>\n<br />\n<p style=\"text-align: right;\"><strong>-Michelle Matthewman </strong></p>[/quote]\n<p style=\"text-align: left;\">[quote]The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\n<br />\n<p style=\"text-align: right;\"><strong>- James &amp; Kristen Green </strong></p>[/quote]\n[quote]Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n<p style=\"text-align: right\";><strong>Cheers,\n</strong><strong>Jen Drysdale</strong></p>[/quote]\n\n[quote]Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinely had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thank you Simon.\n<p style=\"text-align: right\";><strong>-Maureen Wills </strong></p>[/quote]\n\n[quote]Dear Simon and Amy,\n\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\n\n\n<p style=\"text-align:right\";><strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></p>[/quote]\n\n[quote]I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\n<p style=\"text-align: right\";><strong>-Carly Hansen</strong></p>[/quote]\n\n[quote]Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\n<strong>See it here</strong>&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\"><h6>The Strands Of Me</h6></a> </em>[/quote]\n\n[quote]Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<p style=\"text-align: right\";><strong>Cheers\nJess and Ben</strong>[/quote]\n\n[quote]DAVID IS AWESOME!!!\nWe had a great time, it was relaxed, comfortable and the location of the photo shoot was wonderful! David was great with the kids, he has a wonderful personality which allowed us to feel welcomed and be ourselves! Emily and David you are both wonderful professionals who made us feel more like friends than clients…</em></em>\n\nGood luck for the future\n\n<p style=\"text-align: right\";><strong>Kind Regards,\nKatine, Evan, Ecrini, Nickolas and Stavros Maounis</strong></p>\n\n\nPS – Emily was awesome too xx[/quote]\n\n[quote]What a fantastic experience!\n\n<em><em>On our way driving to our ‘photo shoot’ we were starting to think ‘What are we doing?’ thinking we would be too anxious and self conscious. All that went out of the window within minutes of meeting David. We had so much fun and it showed in the photos – which are so BEAUTIFUL! We have wonderful memories of the day too (we’ll never forget the ‘Drunken Scotsman dance’!). Thank-you so much Emily for your enthusiasm and patience… ‘Emily show us that one again, and that one, no that one – and can you show us them all again??’ Such a wonderful time and lovely photos to keep forever!\n\n<p style=\"text-align: right\";><strong>See you next time,\nNatalie and Ewen Gibb</strong></p>[/quote]\n\n[quote]Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderful photos had been captured of our ugly mugs!\n\n<p style=\"text-align: right\";><strong>Thanks again,\nAnne and Owen Kruger</strong></p>[/quote]\n\n\n[quote]We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\nIt was a great day – one I would recommend to anyone\n\n<p style=\"text-align: right\";><strong>Thanks so much,\nSimone Faulkner</strong></p>[/quote]\n\n\n\n[quote]Thanks guys for a great experience\n\nIt was the first family shoot for the grandparents, but David was very patient with everyone and kept everyone nice and relaxed. The pictures turned out amazing with lots of creative shoots. Thanks again for the opportunity to capture our little bubs and the free gift is lovely\n\n<p style=\"text-align: right\";><strong>Elson &amp; Karen Goh</p></strong>[/quote]\n\n\n[quote]David and Emily.\n\nOur photos are just amazing. We will never forget the great work that you guys have done. I will be recommending you to everyone in my community. It was great fun working with you guys. We wish you great luck for an everlasting success.\n\n<p style=\"text-align: right\";><strong>Shekhar, Vaishali and Shanti</strong></p>[/quote]\n\n[quote]Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!\n\n<p style=\"text-align: right\";><strong>The Trusso Family</strong></p>[/quote]\n\n\n\n[quote]Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! \n\n<p style=\"text-align:right\";><strong>Herman and Sol</strong></p>[/quote]\n\n[quote]Great photos! Great Service! Very professional people, very happy with everything! \n\n<p style=\"text-align: right\";><strong>Thanks\nHenneker Family</strong></p>[/quote]\n\n[quote]Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!\n\n<p style=\"text-align:right\";><strong>Mohamed Family</strong></p>[/quote]\n\n[quote]Hey guys!\n\nThank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.\n\n<strong><p style=\"text-align: right\";>Cheers,\nRobert Hart</strong></p>[/quote]\n\n[quote]Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.\n\n<p style=\"text-align: right\";><strong>Lyn and Rocco</p></strong>[/quote]\n\n[quote]A very pleasant experience. Living Image was very professional and accommodating.\n\n<p style=\"text-align:right\";><strong>Marty</p></strong>[/quote]\n\n[quote]We had a good time, very professional and friendly people.\n\n<strong><p style=\"text-align:right\";>Thank-you.\nJorge and Aracely</strong></p>[/quote]\n\n[quote]Excellent posing and lighting effects. Friendly and most accommodations. Great presentation in an environment that was relaxing and professional.\n\nVery impressed with finished product and  good manners from Emily and David.\n\n<p style=\"text-align:right\";><strong>Most Appreciated,\nJill and Paul Bronson</strong></p>[/quote]\n\n[quote]Very Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n\n<p style=\"text-align:right\";><strong>Edward Rynne</strong>[/quote]\n\n[quote]Thanks, great photos. Pleasant experience.\n\n<p style=\"text-align: right\";><strong>John and Antonella Calabrese</p></strong>[/quote]\n\n[quote]We’re very happy with the photos.\n\n<strong><p style=\"text-align\";>good job,\nHenry and Patricia Adie-Cooper</strong></p>[/quote]\n\n[quote]Thanks! Brilliant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n\n<p style=\"text-align: right\";><strong>Elaine and Noel Walters</strong></p>[/quote]\n\n[quote]We had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\n<strong><p style=\"text-align: right\";>Thanks,\nDerek Wall</strong></p>[/quote]\n\n[quote]A very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. \n\n<strong><p style=\"text-align: right\";>Thank-you,\nOtto and Jeannie Ashboth</strong></p>[/quote]\n\n[quote]Thanks for the fantastic photos and for being so patient handling all the young children.\n\n<p style=\"text-align: right\";><strong>Don</strong></p>[/quote]\n\n[quote]The photo session was excellent, Point Walter is so beautiful and David took time to choose the best place for us. Everyone was very helpful. Beautiful photo. Thank-you very much.\n\n<p style=\"text-align: right\";><strong>Rose</strong></p>[/quote]\n\n[quote]Both David and Emily have been great in the service provided as well as their friendliness and being very helpful in every possible way.\n\n<p style=\"text-align: right\";><strong>Ian Ong</strong></p>[/quote]\n\n[quote]Working with teenagers can be a difficult thing, especially when they are not willing participants in the task at hand. But David did a splendid job and our photo is testimony to that. Thank-you for the opportunity to participate.\n\n<p style=\"text-align: right\";><strong>Helen Westcott</strong></p>[/quote]\n\n[quote]Lovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\n<strong><p style=\"text-align: right\";>Many thanks,\nBeryl Price</p></strong>[/quote]\n\n[quote]Very, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\n<strong><p style=\"text-align:right\";>Thanks,\nDionne Smith and family</p></strong>[/quote]\n\n[quote]Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\n<strong><p style=\"text-align: right\";>Thank you,\nJohn Garbin and family </p></strong>[/quote]\n\n[quote]The photos are gorgeous, we had a lot of fun at the river and David made Kyra feel completely at ease.\n\n<strong><p style=\"text-align: right\";>Thank-you,\nChristine, Mal and Kyra</p></strong>[/quote]\n\n[quote]Thank you David and Emily\n\nOur family enjoyed the photo shoot, the professional approach to the job, but the friendly and relaxing time we spent with you. The photos are superb and we will enjoy them till we can’t see any more!\n\nVery best wishes to you both…. \n\n<strong><p style=\"text-align: right\";>Bev Flockart</p></strong>[/quote]\n\n[quote]Thanks so much Emily and David for making me feel so comfortable during the shoot. We all enjoyed ourselves thoroughly. So THANKS!\n\n<strong><p style=\"text-align: right\";>Pamela</p></strong>[/quote]","Testimonials","","inherit","open","open","","18-revision-16","","","2012-10-06 00:51:11","2012-10-06 00:51:11","","18","http://www.livingimagephotography.com.au/18-revision-16/","0","revision","","0");
INSERT INTO wp_posts VALUES("1151","1","2012-09-29 03:32:55","2012-09-29 03:32:55","This is the <strong>BEST</strong> part.\n\nCollecting your order is the most reward step of all. Every image that is ordered is carefully retouched and enhanced to ensure the highest of image quality. Your finished piece of art not only looks good but will last a life time – we guarantee it for life.\n\nOnce you have it proudly displayed in your home, you will be the envy of all of your friends. There is no better way to make a house a home then with beautiful warm images of your loved ones.\n\n<div align=\"\">\n\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/temp3.jpg\" />\n\n</div>","Collecting your Fine Art","","inherit","open","open","","552-revision-7","","","2012-09-29 03:32:55","2012-09-29 03:32:55","","552","http://www.livingimagephotography.com.au/552-revision-7/","0","revision","","0");
INSERT INTO wp_posts VALUES("1152","1","2012-09-29 03:16:39","2012-09-29 03:16:39","Now it’s time for you to see the collection of your wonderful images from your photo shoot.\n\nOur trained designers will walk you through your images and once you have chosen your favourites they will help you choose the best display options. There are lots of different options, so we are sure we have at least one that you will love.\n\nIf there is a special spot in the house where you would like to hang your images, feel free (in fact we encourage you) to bring in a digital image of this space. We can use this image to show you exactly how your chosen collection will look on your wall at home – to scale, and in your desired finish. This takes out all the guess work, it will ensure you feel happy and comfortable with the look of your new artwork.\n\n\n<div align=\"\">\n\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/temp2.jpg\" />\n\n</div>","Design Consulation","","inherit","open","open","","550-revision-8","","","2012-09-29 03:16:39","2012-09-29 03:16:39","","550","http://www.livingimagephotography.com.au/550-revision-8/","0","revision","","0");
INSERT INTO wp_posts VALUES("1153","1","2012-09-28 23:13:57","2012-09-28 23:13:57","Depending on the type of look and feel you are looking for with your portraits, we will determine what clothing options will work best for you. At the time of your booking, we will discuss with you, the best clothing options for you and your family.  However, here are a few great tips to get you started….\n\n<strong><em>Hair and Make-Up</em></strong>\n\nYour hair and make-up should also be worn as you would normally wear it. However, do take a moment to have a look at everyone’s hair; is anyone due for a hair cut or colour? If so, make sure you book them in before your session. We want to capture images of the real you, so no need to go over the top with make-up if you don’t normally wear it.  We retouch all of the work that you purchase, so if there is something that you’re not entirely happy with in your complexion then we can fix it.\n\n<strong><em>What to wear</em></strong>\n\nIt is important that you feel comfortable in whatever it is that you decide to wear, because if you feel good you will look good.\n\nAs a rule of thumb, smart casual is the best way to go. Guys look great in collared shirts, long flowing dresses look stunning on the girls and little kids look great in bright colours. Don’t be afraid to mix it up a bit.\n\nKeep in mind what everybody is wearing to maintain harmony with the overall look, but more importantly steer away from heavy stripes, spots or large logos. Try not to have an exact match of clothing for everyone unless you particularly wish to theme the images.  Instead, use similar colours in the clothing for everyone - two to three co-ordinated colours work best.\n\nConsider your finger nails and toe nails (if you’re wearing open toed footwear), prepare them in line with your own personal style. If you wear glasses, be sure to bring a pair with clear lenses.\n\nDon’t be worried if you don’t have a wardrobe that rivals the celebrities, sometimes the simplest of clothing can be the most effective. But do make sure all your clothes are clean and pressed. It’s important for everyone to wear flattering clothing that fits correctly.\n\nFeel free to bring a couple of out fits to your session; your photographer will help you choose the most appropriate one. It also gives you the opportunity to mix it up a little bit, you can change clothing half way through your session to add some additional variety to your shots.\n\n<strong><em>Getting the kids ready</em></strong>\n\nLittle ones can sometimes be the trickiest to prepare for a photo session. They quickly pick up on stress and may become nervous, so always keep it fun and don’t rehearse the sitting.\n\nWhen booking your session keep in mind your children’s sleep times. No one likes to smile and have fun when they are tired and ready for a nap.\n\nMake sure you arrive at your session early to give your child time to get to know your photographer and used to their new surroundings. During the session if you want to help with making them smile, it works really well when parents stand behind the photographer so young ones look in the direction of the camera when you’re calling for their attention.\n\nBring along their favorite toy, this can add an extra level of sentiment to your photographs.\n\n<strong><em>Animals</em></strong>\n\nWE all want our animals to look their best for their moment in the spot light. However, it is not necessary to have them groomed in the days leading up to the shoot, however, if you prefer to do this- Great! Personalize your shoot- bring along your pets favorite toys to be incorporated into some of the photographs. Of course, we have our own collection of toys in studio as well! Please bring along your pet\'s favorite treats to the session as well!\n\nAt this point, it is a good idea to ask yourself; Would you like to be in same of the photographs? Are there particular personality shots you would like us to capture? How were you thinking to display your Fine Art around your home?","Prepairing for your session","","inherit","open","open","","545-revision-9","","","2012-09-28 23:13:57","2012-09-28 23:13:57","","545","http://www.livingimagephotography.com.au/545-revision-9/","0","revision","","0");
INSERT INTO wp_posts VALUES("1154","1","2012-09-29 02:58:51","2012-09-29 02:58:51","This is the FUN part!\n\nYou will spend up to 1 and ½ hour with your photographer in our studio capturing beautiful photographs based on the plan we made during your consultation. We will shoot a great variety of images to make building your artwork easy and fun.\n\nOur photographers have many years of experience in portrait photography; they are fantastic with making the shyest of people feel relaxed and comfortable. All you need to do is relax, have fun and enjoy the experience with your loved ones.\n\nShortly after your session you will enjoy your ordering session, which is just as much fun as your shoot.\n\n<br />\n\n<div align=\"\">\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/temp1.1.jpg\" />\n</div>\n","Your Shoot","","inherit","open","open","","547-revision-11","","","2012-09-29 02:58:51","2012-09-29 02:58:51","","547","http://www.livingimagephotography.com.au/547-revision-11/","0","revision","","0");
INSERT INTO wp_posts VALUES("1155","1","2012-10-10 06:51:42","2012-10-10 06:51:42","<div align=\"left\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/simon/simon_01.png\" />\n</div>\n[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<div align=\"right\">\n<a href=\"https://www.facebook.com/livingimagesydney?ref=ts\" target=\"_blank\"><img width=\"152\" height=\"48\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/visit-us.png\" /></a>\n</div>\n\n<hr />\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-56","","","2012-10-10 06:51:42","2012-10-10 06:51:42","","6","http://www.livingimagephotography.com.au/6-revision-56/","0","revision","","0");
INSERT INTO wp_posts VALUES("1156","1","2012-10-10 06:58:33","2012-10-10 06:58:33","<div align=\"left\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/simon/Simon_01.png\" />\n</div>\n[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<div align=\"right\">\n<a href=\"https://www.facebook.com/livingimagesydney?ref=ts\" target=\"_blank\"><img width=\"152\" height=\"48\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/visit-us.png\" /></a>\n</div>\n\n<hr />\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-57","","","2012-10-10 06:58:33","2012-10-10 06:58:33","","6","http://www.livingimagephotography.com.au/6-revision-57/","0","revision","","0");
INSERT INTO wp_posts VALUES("1157","1","2012-10-10 07:00:29","2012-10-10 07:00:29","<div align=\"left\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/simon/Simon_02.png\" />\n</div>\n[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<div align=\"right\">\n<a href=\"https://www.facebook.com/livingimagesydney?ref=ts\" target=\"_blank\"><img width=\"152\" height=\"48\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/visit-us.png\" /></a>\n</div>\n\n<hr />\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-58","","","2012-10-10 07:00:29","2012-10-10 07:00:29","","6","http://www.livingimagephotography.com.au/6-revision-58/","0","revision","","0");
INSERT INTO wp_posts VALUES("1158","1","2012-10-10 07:01:57","2012-10-10 07:01:57","<div align=\"left\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/simon/Simon_03.png\" />\n</div>\n[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<div align=\"right\">\n<a href=\"https://www.facebook.com/livingimagesydney?ref=ts\" target=\"_blank\"><img width=\"152\" height=\"48\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/visit-us.png\" /></a>\n</div>\n\n<hr />\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-59","","","2012-10-10 07:01:57","2012-10-10 07:01:57","","6","http://www.livingimagephotography.com.au/6-revision-59/","0","revision","","0");
INSERT INTO wp_posts VALUES("1159","1","2012-10-10 07:03:18","2012-10-10 07:03:18","<div align=\"left\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/simon/Simon_04.png\" />\n</div>\n[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<div align=\"right\">\n<a href=\"https://www.facebook.com/livingimagesydney?ref=ts\" target=\"_blank\"><img width=\"152\" height=\"48\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/visit-us.png\" /></a>\n</div>\n\n<hr />\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-60","","","2012-10-10 07:03:18","2012-10-10 07:03:18","","6","http://www.livingimagephotography.com.au/6-revision-60/","0","revision","","0");
INSERT INTO wp_posts VALUES("1160","1","2012-10-10 07:05:23","2012-10-10 07:05:23","<div align=\"left\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/simon/Simon_00.png\" />\n</div>\n[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<div align=\"right\">\n<a href=\"https://www.facebook.com/livingimagesydney?ref=ts\" target=\"_blank\"><img width=\"152\" height=\"48\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/visit-us.png\" /></a>\n</div>\n\n<hr />\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-61","","","2012-10-10 07:05:23","2012-10-10 07:05:23","","6","http://www.livingimagephotography.com.au/6-revision-61/","0","revision","","0");
INSERT INTO wp_posts VALUES("1161","1","2012-10-10 06:54:01","2012-10-10 06:54:01","<h3>Sydney</h3>\nGround Floor, Suite C1, 210 Willoughby Road, Crows Nest, NSW, 2065\nPhone: <strong>(02) 9967 3114</strong>\n<br />\n<strong>We are thrilled that you have chosen us to capture your portraits. We\'re sure you will enjoy your experience with us!</strong>\n\nPlease enter your details in the booking request form below, and we will be on contact with you very shortly.\n\n[gravityform id=1 title=false description=false]\n\n<em><strong>Please note, we will do our best to accommodate your preferred date and time for your session, please be aware that we may be unavailable for your preference and will discuss suitable alternatives with you if need be.</strong></em>","Bookings","","inherit","open","open","","20-revision-8","","","2012-10-10 06:54:01","2012-10-10 06:54:01","","20","http://www.livingimagephotography.com.au/20-revision-8/","0","revision","","0");
INSERT INTO wp_posts VALUES("1162","1","2012-10-11 01:04:49","2012-10-11 01:04:49","<h3>Sydney</h3>\nSuite C1, Ground Floor, 210 Willoughby Road, Crows Nest, NSW, 2065\nPhone: <strong>(02) 9967 3114</strong>\n<br />\n<strong>We are thrilled that you have chosen us to capture your portraits. We\'re sure you will enjoy your experience with us!</strong>\n\nPlease enter your details in the booking request form below, and we will be on contact with you very shortly.\n\n[gravityform id=1 title=false description=false]\n\n<em><strong>Please note, we will do our best to accommodate your preferred date and time for your session, please be aware that we may be unavailable for your preference and will discuss suitable alternatives with you if need be.</strong></em>","Bookings","","inherit","open","open","","20-revision-9","","","2012-10-11 01:04:49","2012-10-11 01:04:49","","20","http://www.livingimagephotography.com.au/20-revision-9/","0","revision","","0");
INSERT INTO wp_posts VALUES("1165","1","2012-10-11 01:28:46","2012-10-11 01:28:46","<p style=\"text-align: left;\">Below is some wonderful feedback that we have received from our customers. We\'re more than sure that you will enjoy your experience with us in the same way as many of our customers have.</p>\n<p style=\"text-align: left;\">\n[quote]Just wanted to let both you and Simon know how wonderful my pictures are. I gave them to Tim on the weekend as a thank you for all his support over the last five years of my degree and also because it was the 35th anniversary of when we first started dating.\n\nHe LOVES the photos, really thinks they are amazing!!!!!!! Not only is he impressed with how I look he is also hugely impressed with the quality of the images, the presentation and just how professional it all looks\n\nThank you again for everything. I will definitely recommend you to everyone I meet.\n<p style=\"text-align: right\";><strong>-Sharon Bickford</strong></p>[/quote]\n<br />\n[quote]Before we arrived at Living Image Photography I was a little nervous, but as soon as we walked into the studio the nervous disappeared. The studio is a relaxing environment where Amy and Simon make you feel very welcome,  so you can be yourself. Derek and I had such a fun afternoon. At our viewing, there was so many good photos to chose from and the viewing room setup made it so easy to be able to select the photos, frames and sizes which would fit perfectly in our home. \nWe are so happy with our photos, and would recommend Living Image Photography to anyone who wants to capture those very special moments in your life – this is their speciality.\n<p style=\"text-align: right\";><strong>-Kim & Derek</strong></p>[/quote]\n<br />\n[quote]Amy handled beautifully what would be, a very delicate role of managing parents and guardians emotional journey of photography their loved ones. I always found Amy to go the extra yard to ensure our goals were met</p>\n<br />\n<p style=\"text-align: right;\"><strong>-Michelle Matthewman </strong></p>[/quote]\n<p style=\"text-align: left;\">[quote]The Living Image team did some awesome stills of Maxwell Green when he was four weeks old. They are very special photos that proudly hang in his room. We found the entire experience personable, creative and professional\n<br />\n<p style=\"text-align: right;\"><strong>- James &amp; Kristen Green </strong></p>[/quote]\n[quote]Thanks again Amy &amp; Simon! It is really a wonderful opportunity to be able to do something that will make a difference to my family whilst being able to contribute to something that is making a difference to other people (referring to the Steps-with-hope fundraiser) and their families as well. We absolutely love and cherish the photos that you have taken of our family over the years, and it is even more special to be part of building this fence in Cambodia as a result of our contribution. Thank you for getting involved, and for getting us involved too!\"\n<p style=\"text-align: right\";><strong>Cheers,\n</strong><strong>Jen Drysdale</strong></p>[/quote]\n\n[quote]Where do I start. I expected before the day that we would get at least a few good photos. We got more than that, we got to share a memory that my children will remember fondly. Any good photographer can get you a nice photo to put on the wall but it takes something special to capture a personality and then times it by 5 all at the same time.Simon you made my children feel at ease in i would say about 2 minutes after meeting you, I think you must have a lot of kid left in you. I love how every photo i looked at in the studio not one of them had a forced smile. The kids genuinely had a whole heap of fun as I did just watching you bring them to life. I am lost for words as to tell you how much the day meant to us, and for letting the kids be kids and capturing that. It was more perfect than I could have hoped for thank you Simon.\n<p style=\"text-align: right\";><strong>-Maureen Wills </strong></p>[/quote]\n\n\n[quote]Dear Simon and Amy,\n\nWhat can I say, we had a ball during our family shoot; and the results are fantastic! Everyone who sees the photos can’t believe how great they are and we couldn\'t be happier with them. They are already a family treasure.\n\n\n<p style=\"text-align:right\";><strong>Thank you.\n-Danny, Gina, Rebecca and Alex.</strong></p>[/quote]\n\n\n[quote]I want to say a MASSIVE thank you to Simon and Amy for not only bending over backwards to create a show-stopping portfolio for me, but for truly making me feel as though they had been shooting me for years. I was very nervous about getting in front of the camera posing and pouting, but Simon was out of this world. He knows exactly what to say to help get the best shot. And Amy has been an absolute angel to deal with. Sorry we drank all your water! Lol. Your team at L.I.P is so strong and I would recommend everyone to use you guys. Going through my photos on Saturday is such a memorable experience for me, u really captured me and my personality.\nI cannot thank u enough!!!\n<p style=\"text-align: right\";><strong>-Carly Hansen</strong></p>[/quote]\n\n\n[quote]Pop over to the popular blog by <strong>Daneyl Green</strong> to see her write up about her experience with Living Image Photography!\n<strong>See it here</strong>&gt;&gt;  <a href=\"http://thestrandsofme.blogspot.com.au/2012/04/pregnancy-memories.html\"><h6>The Strands Of Me</h6></a> </em>[/quote]\n\n\n[quote]Just a quick note to say a big thank you for the lovely photos you have taken of our family.  Once again your ability to capture the personalities of each of us is astounding.  Over the 8 years we have such a collection of your amazing photography throughout our house.  Thank you for making time stop and allowing us the reflection on how quickly our family is growing.\"</em></em>\n\n<p style=\"text-align: right\";><strong>Cheers\nJess and Ben</strong>[/quote]\n\n\n[quote]Thank you so much for the wonderful experience. The photo shoot was fun and allowed us to relax and enjoy the attention of the passer’s by! The viewing was through and we were amazed that so many wonderful photos had been captured of our ugly mugs!\n\n<p style=\"text-align: right\";><strong>Thanks again,\nAnne and Owen Kruger</strong></p>[/quote]\n\n\n[quote]We couldn’t be happier with the end result – our photos are amazing and exceeded our expectations! </em>\n\nIt was a great day – one I would recommend to anyone\n\n<p style=\"text-align: right\";><strong>Thanks so much,\nSimone Faulkner</strong></p>[/quote]\n\n\n[quote]Thanks a lot for the work guys. The pictures are absolutely FANTASTIC!\n\n<p style=\"text-align: right\";><strong>The Trusso Family</strong></p>[/quote]\n\n\n[quote]Great service, friendly and very professional staff. Beautiful Photos! Thanks 1,000,000! \n\n<p style=\"text-align:right\";><strong>Herman and Sol</strong></p>[/quote]\n\n\n[quote]Great photos! Great Service! Very professional people, very happy with everything! \n\n<p style=\"text-align: right\";><strong>Thanks\nHenneker Family</strong></p>[/quote]\n\n\n[quote]Thanks for a great experience. The ‘shoot’ was well handled. The viewing was fun and easy going. The pics FABULOUS!\n\n<p style=\"text-align:right\";><strong>Mohamed Family</strong></p>[/quote]\n\n\n[quote]Hey guys!\n\nThank you so much for providing a top quality service in a relaxed atmosphere for my families photos shoot. We are very pleased with the photos and had a great day together getting them taken.\n\n<strong><p style=\"text-align: right\";>Cheers,\nRobert Hart</strong></p>[/quote]\n\n\n[quote]Very professional and an enjoyable experience. We were very happy with our photos. I would recommend Living Image to anyone.\n\n<p style=\"text-align: right\";><strong>Lyn and Rocco</p></strong>[/quote]\n\n\n[quote]A very pleasant experience. Living Image was very professional and accommodating.\n\n<p style=\"text-align:right\";><strong>Marty</p></strong>[/quote]\n\n\n[quote]We had a good time, very professional and friendly people.\n\n<strong><p style=\"text-align:right\";>Thank-you.\nJorge and Aracely</strong></p>[/quote]\n\n\n[quote]Very Very Very pleased!! Great photo which I am so pleased to have of me and my son. Would recommend!\n\n<p style=\"text-align:right\";><strong>Edward Rynne</strong>[/quote]\n\n\n[quote]Thanks, great photos. Pleasant experience.\n\n<p style=\"text-align: right\";><strong>John and Antonella Calabrese</p></strong>[/quote]\n\n\n[quote]We’re very happy with the photos.\n\n<strong><p style=\"text-align\";>good job,\nHenry and Patricia Adie-Cooper</strong></p>[/quote]\n\n\n[quote]Thanks! Brilliant job! Loved the way we were treated and made us very comfortable. Will be back again. Big Thanks!\n\n<p style=\"text-align: right\";><strong>Elaine and Noel Walters</strong></p>[/quote]\n\n\n[quote]We had a nice experience doing the photo shoot, not something we’d done before. When we had to do the choosing it wasn’t easy due to the many great photos.\n\n<strong><p style=\"text-align: right\";>Thanks,\nDerek Wall</strong></p>[/quote]\n\n\n[quote]A very pleasant experience all round. NO pushy sales experience. All relaxed and an enjoyable experience. \n\n<strong><p style=\"text-align: right\";>Thank-you,\nOtto and Jeannie Ashboth</strong></p>[/quote]\n\n\n[quote]Thanks for the fantastic photos and for being so patient handling all the young children.\n\n<p style=\"text-align: right\";><strong>Don</strong></p>[/quote]\n\n\n[quote]Lovely photo’s. Very pleased with the four generational photo. A beautiful keepsake for future generations.\n\n<strong><p style=\"text-align: right\";>Many thanks,\nBeryl Price</p></strong>[/quote]\n\n\n[quote]Very, very happy with the photos. Very relaxed photo shoot. Our kids and dog really enjoyed themselves.\n\n<strong><p style=\"text-align:right\";>Thanks,\nDionne Smith and family</p></strong>[/quote]\n\n\n[quote]Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all.\n\n<strong><p style=\"text-align: right\";>Thank you,\nJohn Garbin and family </p></strong>[/quote]","Testimonials","","inherit","open","open","","18-revision-19","","","2012-10-11 01:28:46","2012-10-11 01:28:46","","18","http://www.livingimagephotography.com.au/18-revision-19/","0","revision","","0");
INSERT INTO wp_posts VALUES("1166","1","2012-10-10 06:54:09","2012-10-10 06:54:09","<h5>\'PLAY FAVORITE\' COMPETITION:</h5>\nEntry is open only to persons eighteen years and older, who are residents of Victoria or New South Wales and have <strong>not won a competition, prize or promotional item, through Living Image Photography in the last twelve months.</strong>\n\nTo enter, the completed online form must be received at the studio by the end of the promotion date. Entries not properly completed will be rejected. Late entries will not be accepted. Prize winners will be notified by mail, email or phone. The major prize winner will be the client with the most valid votes. The Major Prize winner will be entitled to up to $2000 worth of products from Living Image, to be redeemed from their recent session, to be used in one transaction, any unused balance will be forfeited. The Major Prize is valid for a period of three months from the date of notification. Consolation Prizes will have an expiry date printed on the Gift Certificate. Prizes are non transferable, not exchangeable or redeemable in whole or in part for any cash equivalent. Prizes cannot be used in conjunction with any other offer or promotion.\n<h5>APPOINTMENT HOLDING FEE/ DEPOSITS</h5>\n<strong>A holding fee / deposit of $50 will be required to secure and hold your appointment. This holding fee ensures your commitment to the scheduled appointment.</strong>\nThe holding fee / deposit will be returned to you at the presentation of the photographs following the photo shoot at the Ordering Session, provided that you have completed your appointment at the correctly scheduled time and date. Failure to attend or complete your scheduled appointment may result in the cancellation of any prize and the forfeiture of the holding fee at the sole discretion of studio management.\n<h5>GIFT CERTIFICATES/PROMOTIONAL VOUCHERS:</h5>\nMust be redeemed by the holder prior to the expiry date, provided the holder has not redeemed a Competition Prize, Gift Certificate or Promotional Voucher with Living Image Photography in the last 6 months (date calculated from the previous sitting date). Prizes are for domestic portraiture and can not be used for commercial photography.\n<h5>TRANSFERABLE:</h5>\nPromotional Vouchers and Gift Certificates <strong>ARE</strong> transferable to family or friends. They are not exchangeable or redeemable in whole or in part for any cash equivalent. The vouchers and gift certificates cannot be used in conjunction with any other offer, prize or promotion. Only one (1) Gift Certificate or Promotional voucher/certificate can be used at a time.  You cannot use the gift certificate or promotional voucher to purchase products from any other photo sessions.\n<h5>FACEBOOK COMPETITION:</h5>\nBy entering our Facebook competition, the entrant acknowledges that the promotion is in no way sponsored, endorsed, administered by or associated with, Facebook in any way.\n<h5>ARTISTIC CONTROL:</h5>\nLiving Image Photography reserves artistic control over the design and content of each photoshoot. We may, at our discretion, decline to create certain types or styles of photography. We reserve the right to refuse to produce images at some sizes or combinations of sizes if we believe such images would or could be detrimental to our reputation as a professional studio or as professional photographers.\n\n<strong>Clients should discuss their requirements with the studio prior to the photoshoot.</strong>\n<h5>APPOINTMENT RESCHEDULE POLICY:</h5>\n<strong>Gift Certificates and Promotional Vouchers entitle the holder to a SINGLE APPOINTMENT ONLY. Once made, an appointment can not be rescheduled and the Gift Certificate or Promotional Voucher is deemed to have been used in full at that original appointment time and date.</strong>\n\n*NOTE: In exceptional circumstances, management may, at their sole discretion, reschedule an appointment and carry forward the Gift Certificate and holding fee / deposit.\n<h5>NO SHOW POLICY:</h5>\nNon attendance (NO SHOW) at an appointment without notice, will result in the forfeiture of the holding / deposit fee. The Gift Certificate or Promotional Voucher is then deemed to have been used in full.<strong>Living Image Photography reserves the right to then charge the appointment holder the full Sitting Fee of $150 (less the $50 holding deposit).</strong>\n<h5>COPYRIGHT:</h5>\nUnrestricted Copyright to all images created during the photo shoot that forms part of the Gift Certificate or Promotional Voucher or Referral Voucher is deemed to belong solely to Living Image Photography.\n<h5>PRIVACY:</h5>\nBy commissioning Living Image Photography to create images or by entering any promotion or competition, clients and or entrants understand and agree that Living Image Photography may use the information provided by them in accordance with National Privacy Principles. <a href=\"http://www.privacy.gov.au/\" target=\"_blank\">http://www.privacy.gov.au</a>","Terms and Conditions","","inherit","open","open","","573-revision-6","","","2012-10-10 06:54:09","2012-10-10 06:54:09","","573","http://www.livingimagephotography.com.au/573-revision-6/","0","revision","","0");
INSERT INTO wp_posts VALUES("1169","1","2012-10-10 07:07:36","2012-10-10 07:07:36","<div align=\"left\">\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/simon/Simon_01.png\" />\n</div>\n[quote]\n<h6>I am an unashamed (unabashed) romantic. I believe in things like  love at first sight and happy endings... I’m also a firm believer in  following your true passions in life; fortunately for me, mine is  photography, capturing the images of life, emotion and relationships.... Photographs of our children and families are our (most cherished)  memories. As a father of two beautiful boys (just biased I guess), I  understand and appreciate the importance of capturing every  fast-vanishing phase of my children\'s youth. So I feel privileged as the  photographer in capturing and documenting the beautiful lives of my  clients... for them to enjoy forever.</h6>\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\n<img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/simon_sig.png\" />[/quote]\n<br />\n<div align=\"right\">\n<a href=\"https://www.facebook.com/livingimagesydney?ref=ts\" target=\"_blank\"><img width=\"152\" height=\"48\" src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/visit-us.png\" /></a>\n</div>\n\n<hr />\n\n<strong><i>\"Absolutely thrilled with the photos. A very professional set up. We had a great experience with the photo shoot lots of fun. A recommendation to all. \" \n<br />\n--- John Garbin and family</i></strong>\n\n\n\n\n\n<!-- <div align=\"center\">\n<a href=\"http://www.livingimagephotography.com.au/decor/gifts/\"><img src=\"http://www.livingimagephotography.com.au/wp-content/uploads/2012/09/giftcertificate-thumb.jpg\" /></a>\n</div> -->","Welcome","","inherit","open","open","","6-revision-62","","","2012-10-10 07:07:36","2012-10-10 07:07:36","","6","http://www.livingimagephotography.com.au/6-revision-62/","0","revision","","0");
INSERT INTO wp_posts VALUES("1170","1","2012-10-10 06:57:18","2012-10-10 06:57:18","This is the <strong>BEST</strong> part.\n\nCollecting your order is the most reward step of all. Every image that is ordered is carefully retouched and enhanced to ensure the highest of image quality. Your finished piece of art not only looks good but will last a life time – we guarantee it for life.\n\nOnce you have it proudly displayed in your home, you will be the envy of all of your friends. There is no better way to make a house a home then with beautiful warm images of your loved ones.\n\n<div align=\"\">\n\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/temp3.jpg\" />\n\n</div>","Collecting your Fine Art","","inherit","open","open","","552-revision-8","","","2012-10-10 06:57:18","2012-10-10 06:57:18","","552","http://www.livingimagephotography.com.au/552-revision-8/","0","revision","","0");
INSERT INTO wp_posts VALUES("1171","1","2012-10-10 06:57:19","2012-10-10 06:57:19","Now it’s time for you to see the collection of your wonderful images from your photo shoot.\n\nOur trained designers will walk you through your images and once you have chosen your favourites they will help you choose the best display options. There are lots of different options, so we are sure we have at least one that you will love.\n\nIf there is a special spot in the house where you would like to hang your images, feel free (in fact we encourage you) to bring in a digital image of this space. We can use this image to show you exactly how your chosen collection will look on your wall at home – to scale, and in your desired finish. This takes out all the guess work, it will ensure you feel happy and comfortable with the look of your new artwork.\n\n\n<div align=\"\">\n\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/temp2.jpg\" />\n\n</div>","Design Consulation","","inherit","open","open","","550-revision-9","","","2012-10-10 06:57:19","2012-10-10 06:57:19","","550","http://www.livingimagephotography.com.au/550-revision-9/","0","revision","","0");
INSERT INTO wp_posts VALUES("1172","1","2012-10-10 06:57:45","2012-10-10 06:57:45","This is the FUN part!\n\nYou will spend up to 1 and ½ hour with your photographer in our studio capturing beautiful photographs based on the plan we made during your consultation. We will shoot a great variety of images to make building your artwork easy and fun.\n\nOur photographers have many years of experience in portrait photography; they are fantastic with making the shyest of people feel relaxed and comfortable. All you need to do is relax, have fun and enjoy the experience with your loved ones.\n\nShortly after your session you will enjoy your ordering session, which is just as much fun as your shoot.\n\n<br />\n\n<div align=\"\">\n<img src=\"http://livingimagephotography.com.au/wp-content/uploads/2012/09/temp1.1.jpg\" />\n</div>\n","Your Shoot","","inherit","open","open","","547-revision-12","","","2012-10-10 06:57:45","2012-10-10 06:57:45","","547","http://www.livingimagephotography.com.au/547-revision-12/","0","revision","","0");

DROP TABLE IF EXISTS `wp_rg_form`;

CREATE TABLE `wp_rg_form` (
  `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(150) NOT NULL,
  `date_created` datetime NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO wp_rg_form VALUES("1","booking form","2012-09-19 00:13:16","1");
INSERT INTO wp_rg_form VALUES("2","Gift Certificate Order Form","2012-09-22 05:43:32","1");

DROP TABLE IF EXISTS `wp_rg_form_meta`;

CREATE TABLE `wp_rg_form_meta` (
  `form_id` mediumint(8) unsigned NOT NULL,
  `display_meta` longtext,
  `entries_grid_meta` longtext,
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO wp_rg_form_meta VALUES("1","a:31:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:12:\"booking form\";s:11:\"description\";s:0:\"\";s:14:\"labelPlacement\";s:9:\"top_label\";s:17:\"maxEntriesAllowed\";i:0;s:17:\"maxEntriesMessage\";s:0:\"\";s:13:\"oneEntryPerIP\";b:0;s:12:\"confirmation\";a:5:{s:4:\"type\";s:7:\"message\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:3:\"url\";s:0:\"\";s:6:\"pageId\";i:0;s:11:\"queryString\";s:0:\"\";}s:6:\"button\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"text\";s:6:\"Submit\";s:8:\"imageUrl\";s:0:\"\";}s:6:\"fields\";a:11:{i:0;a:19:{s:2:\"id\";i:1;s:5:\"label\";s:10:\"First Name\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:6:\"formId\";s:1:\"1\";}i:1;a:19:{s:2:\"id\";i:2;s:5:\"label\";s:9:\"Last Name\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:6:\"formId\";s:1:\"1\";}i:2;a:20:{s:2:\"id\";i:3;s:5:\"label\";s:14:\"Postal Address\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:11:\"description\";s:36:\"your full address including postcode\";s:6:\"formId\";s:1:\"1\";}i:3;a:21:{s:2:\"id\";i:4;s:5:\"label\";s:5:\"Phone\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:5:\"phone\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"phoneFormat\";s:8:\"standard\";s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:11:\"description\";s:16:\"incude area code\";s:6:\"formId\";s:1:\"1\";}i:4;a:19:{s:2:\"id\";i:5;s:5:\"label\";s:5:\"Email\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:6:\"formId\";s:1:\"1\";}i:5;a:20:{s:2:\"id\";i:6;s:5:\"label\";s:14:\"Preferred Date\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:4:\"date\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:8:\"calendar\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:11:\"description\";s:112:\"Select your preferred date, sessions are available Tues-Sat only. Saturday\'s incur a refundable booking deposit.\";s:6:\"formId\";s:1:\"1\";}i:6;a:20:{s:2:\"id\";i:11;s:5:\"label\";s:14:\"Preferred Time\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:8:\"checkbox\";s:10:\"isRequired\";b:0;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:7:\"choices\";a:4:{i:0;a:3:{s:4:\"text\";s:13:\"Early Morning\";s:5:\"value\";s:13:\"Early Morning\";s:10:\"isSelected\";b:0;}i:1;a:3:{s:4:\"text\";s:12:\"Late Morning\";s:5:\"value\";s:12:\"Late Morning\";s:10:\"isSelected\";b:0;}i:2;a:3:{s:4:\"text\";s:15:\"Early Afternoon\";s:5:\"value\";s:15:\"Early Afternoon\";s:10:\"isSelected\";b:0;}i:3;a:3:{s:4:\"text\";s:14:\"Late Afternoon\";s:5:\"value\";s:14:\"Late Afternoon\";s:10:\"isSelected\";b:0;}}s:6:\"inputs\";a:4:{i:0;a:3:{s:2:\"id\";s:4:\"11.1\";s:5:\"label\";s:13:\"Early Morning\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";s:4:\"11.2\";s:5:\"label\";s:12:\"Late Morning\";s:4:\"name\";s:0:\"\";}i:2;a:3:{s:2:\"id\";s:4:\"11.3\";s:5:\"label\";s:15:\"Early Afternoon\";s:4:\"name\";s:0:\"\";}i:3;a:3:{s:2:\"id\";s:4:\"11.4\";s:5:\"label\";s:14:\"Late Afternoon\";s:4:\"name\";s:0:\"\";}}s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:6:\"formId\";s:1:\"1\";}i:7;a:20:{s:2:\"id\";i:12;s:5:\"label\";s:34:\"You will be attending the session?\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:11:\"description\";s:63:\"Eg; Myself, My Family, 3 siblings etc. Include number of people\";s:6:\"formId\";s:1:\"1\";}i:8;a:20:{s:2:\"id\";i:13;s:5:\"label\";s:13:\"Special Offer\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:10:\"isRequired\";b:0;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:11:\"description\";s:53:\"If booking under a special offer, please list it here\";s:6:\"formId\";s:1:\"1\";}i:9;a:20:{s:2:\"id\";i:14;s:5:\"label\";s:27:\"Message or Additional Notes\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:10:\"isRequired\";b:0;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:11:\"description\";s:55:\"Enter more information here, including special requests\";s:6:\"formId\";s:1:\"1\";}i:10;a:22:{s:2:\"id\";i:16;s:5:\"label\";s:7:\"Captcha\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:7:\"captcha\";s:10:\"isRequired\";b:0;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"displayOnly\";b:1;s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"captchaTheme\";s:5:\"clean\";s:11:\"description\";s:44:\"This is to stop robots from making bookings.\";s:6:\"formId\";s:1:\"1\";}}s:11:\"nextFieldId\";i:17;s:22:\"useCurrentUserAsAuthor\";b:1;s:8:\"cssClass\";s:0:\"\";s:10:\"postAuthor\";s:1:\"1\";s:12:\"postCategory\";s:1:\"1\";s:10:\"postStatus\";s:5:\"draft\";s:12:\"limitEntries\";b:0;s:17:\"limitEntriesCount\";s:0:\"\";s:19:\"limitEntriesMessage\";s:0:\"\";s:12:\"scheduleForm\";b:0;s:13:\"scheduleStart\";s:0:\"\";s:17:\"scheduleStartHour\";s:0:\"\";s:19:\"scheduleStartMinute\";s:0:\"\";s:17:\"scheduleStartAmpm\";s:0:\"\";s:11:\"scheduleEnd\";s:0:\"\";s:15:\"scheduleEndHour\";s:0:\"\";s:17:\"scheduleEndMinute\";s:0:\"\";s:15:\"scheduleEndAmpm\";s:0:\"\";s:15:\"scheduleMessage\";s:0:\"\";s:12:\"notification\";a:9:{s:2:\"to\";s:36:\"marketing@livingimagephotography.com\";s:3:\"bcc\";s:0:\"\";s:7:\"subject\";s:103:\"Web Booking {StudioLocation:1}: {FirstName:14} {LastName:15} for {DateOfSession:6}, {Preferred Time:18}\";s:7:\"message\";s:167:\"A web booking has been submitted on the Living Image Photography web site, below are the details.\n\n{all_fields} \n\nUser IP Address: {ip}\nDate Submitted: {date_dmy}\";s:4:\"from\";s:36:\"marketing@livingimagephotography.com\";s:9:\"fromField\";s:0:\"\";s:7:\"replyTo\";s:36:\"marketing@livingimagephotography.com\";s:12:\"replyToField\";s:0:\"\";s:7:\"routing\";N;}s:13:\"autoResponder\";a:6:{s:7:\"toField\";s:1:\"5\";s:3:\"bcc\";s:0:\"\";s:4:\"from\";s:36:\"marketing@livingimagephotography.com\";s:7:\"replyTo\";s:36:\"marketing@livingimagephotography.com\";s:7:\"subject\";s:29:\"Your Portrait Session Booking\";s:7:\"message\";s:528:\"Hi {FirstName:14},\n\nThis message is to confirm that we have received your booking request form, thank you. \n\nYour preferred booking is for: {DateOfSession:6}, {Preferred Time:18} with our {StudioLocation:1} studio.\n\nA team member from our {StudioLocation:1} studio will contact you very shortly to confirm your booking and go over the preparation details for your session.\n\nWe are thrilled to have you as a customer and we\'re sure you will thoroughly enjoy your experience with us!\n\n\nRegards,\n\nThe Living Image Team\";}}","");
INSERT INTO wp_rg_form_meta VALUES("2","a:31:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:27:\"Gift Certificate Order Form\";s:11:\"description\";s:112:\"Please enter your details in the form below. We will be in contact with you very shortly to process your order. \";s:14:\"labelPlacement\";s:9:\"top_label\";s:17:\"maxEntriesAllowed\";i:0;s:17:\"maxEntriesMessage\";s:0:\"\";s:13:\"oneEntryPerIP\";b:0;s:12:\"confirmation\";a:5:{s:4:\"type\";s:7:\"message\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:3:\"url\";s:0:\"\";s:6:\"pageId\";i:0;s:11:\"queryString\";s:0:\"\";}s:6:\"button\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"text\";s:6:\"Submit\";s:8:\"imageUrl\";s:0:\"\";}s:6:\"fields\";a:7:{i:0;a:19:{s:2:\"id\";i:1;s:5:\"label\";s:10:\"First Name\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:6:\"formId\";s:1:\"2\";}i:1;a:19:{s:2:\"id\";i:2;s:5:\"label\";s:9:\"Last Name\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:6:\"formId\";s:1:\"2\";}i:2;a:20:{s:2:\"id\";i:3;s:5:\"label\";s:14:\"Postal Address\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:11:\"description\";s:36:\"your full address including postcode\";s:6:\"formId\";s:1:\"2\";}i:3;a:21:{s:2:\"id\";i:4;s:5:\"label\";s:5:\"Phone\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:5:\"phone\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"phoneFormat\";s:8:\"standard\";s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:11:\"description\";s:16:\"incude area code\";s:6:\"formId\";s:1:\"2\";}i:4;a:19:{s:2:\"id\";i:5;s:5:\"label\";s:5:\"Email\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:6:\"formId\";s:1:\"2\";}i:5;a:20:{s:2:\"id\";i:14;s:5:\"label\";s:27:\"Message or Additional Notes\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:10:\"isRequired\";b:0;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:11:\"description\";s:55:\"Enter more information here, including special requests\";s:6:\"formId\";s:1:\"2\";}i:6;a:22:{s:2:\"id\";i:16;s:5:\"label\";s:7:\"Captcha\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:7:\"captcha\";s:10:\"isRequired\";b:0;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"displayOnly\";b:1;s:11:\"addressType\";s:13:\"international\";s:12:\"defaultState\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:11:\"hideCountry\";b:0;s:12:\"hideAddress2\";b:0;s:20:\"displayAllCategories\";b:0;s:16:\"calendarIconType\";s:4:\"none\";s:15:\"calendarIconUrl\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"captchaTheme\";s:5:\"clean\";s:11:\"description\";s:44:\"This is to stop robots from making bookings.\";s:6:\"formId\";s:1:\"2\";}}s:11:\"nextFieldId\";i:17;s:22:\"useCurrentUserAsAuthor\";b:1;s:8:\"cssClass\";s:0:\"\";s:10:\"postAuthor\";s:1:\"1\";s:12:\"postCategory\";s:1:\"1\";s:10:\"postStatus\";s:5:\"draft\";s:12:\"limitEntries\";b:0;s:17:\"limitEntriesCount\";s:0:\"\";s:19:\"limitEntriesMessage\";s:0:\"\";s:12:\"scheduleForm\";b:0;s:13:\"scheduleStart\";s:0:\"\";s:17:\"scheduleStartHour\";s:0:\"\";s:19:\"scheduleStartMinute\";s:0:\"\";s:17:\"scheduleStartAmpm\";s:0:\"\";s:11:\"scheduleEnd\";s:0:\"\";s:15:\"scheduleEndHour\";s:0:\"\";s:17:\"scheduleEndMinute\";s:0:\"\";s:15:\"scheduleEndAmpm\";s:0:\"\";s:15:\"scheduleMessage\";s:0:\"\";s:12:\"notification\";a:9:{s:2:\"to\";s:36:\"marketing@livingimagephotography.com\";s:3:\"bcc\";s:0:\"\";s:7:\"subject\";s:51:\"Gift Certificate Order {FirstName:14} {LastName:15}\";s:7:\"message\";s:179:\"An Gift Certificate order has been submitted on the Living Image Photography web site, below are the details.\n\n{all_fields} \n\nUser IP Address: {ip}\nDate Submitted: {date_dmy}\";s:4:\"from\";s:36:\"marketing@livingimagephotography.com\";s:9:\"fromField\";s:0:\"\";s:7:\"replyTo\";s:36:\"marketing@livingimagephotography.com\";s:12:\"replyToField\";s:0:\"\";s:7:\"routing\";N;}s:13:\"autoResponder\";a:6:{s:7:\"toField\";s:1:\"5\";s:3:\"bcc\";s:0:\"\";s:4:\"from\";s:36:\"marketing@livingimagephotography.com\";s:7:\"replyTo\";s:36:\"marketing@livingimagephotography.com\";s:7:\"subject\";s:27:\"Your Gift Certificate Order\";s:7:\"message\";s:282:\"Hi {FirstName:14},\n\nThis message is to confirm that we have received your order, thank you. \n\nA team member from our studio will contact you very shortly to confirm your order.\n\nWe are thrilled to have you as a customer! Thank you again.\n\n\nRegards,\n\nThe Living Image Team\";}}","");

DROP TABLE IF EXISTS `wp_rg_form_view`;

CREATE TABLE `wp_rg_form_view` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` char(15) DEFAULT NULL,
  `count` mediumint(8) unsigned NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;

INSERT INTO wp_rg_form_view VALUES("1","1","2012-10-10 05:57:19","124.171.14.195","8");
INSERT INTO wp_rg_form_view VALUES("2","1","2012-10-10 21:20:06","60.242.170.35","1");
INSERT INTO wp_rg_form_view VALUES("3","1","2012-10-10 22:19:35","60.242.170.35","1");
INSERT INTO wp_rg_form_view VALUES("4","1","2012-10-10 23:29:01","49.145.115.138","1");
INSERT INTO wp_rg_form_view VALUES("5","1","2012-10-11 00:56:58","49.145.115.138","1");
INSERT INTO wp_rg_form_view VALUES("6","1","2012-10-11 01:48:56","124.171.14.195","1");
INSERT INTO wp_rg_form_view VALUES("7","1","2012-10-11 03:19:42","124.171.14.195","1");
INSERT INTO wp_rg_form_view VALUES("8","1","2012-10-13 02:52:16","69.171.228.248","1");
INSERT INTO wp_rg_form_view VALUES("9","1","2012-10-13 18:00:40","66.249.76.242","1");
INSERT INTO wp_rg_form_view VALUES("10","2","2012-10-13 19:13:09","66.249.76.242","1");
INSERT INTO wp_rg_form_view VALUES("11","1","2012-10-14 18:06:11","38.100.21.63","1");

DROP TABLE IF EXISTS `wp_rg_lead`;

CREATE TABLE `wp_rg_lead` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL,
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `is_starred` tinyint(1) NOT NULL DEFAULT '0',
  `is_read` tinyint(1) NOT NULL DEFAULT '0',
  `ip` char(15) NOT NULL,
  `source_url` varchar(200) NOT NULL DEFAULT '',
  `user_agent` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


DROP TABLE IF EXISTS `wp_rg_lead_detail`;

CREATE TABLE `wp_rg_lead_detail` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `lead_id` int(10) unsigned NOT NULL,
  `form_id` mediumint(8) unsigned NOT NULL,
  `field_number` float NOT NULL,
  `value` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `lead_id` (`lead_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


DROP TABLE IF EXISTS `wp_rg_lead_detail_long`;

CREATE TABLE `wp_rg_lead_detail_long` (
  `lead_detail_id` bigint(20) unsigned NOT NULL,
  `value` longtext,
  KEY `lead_detail_key` (`lead_detail_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


DROP TABLE IF EXISTS `wp_rg_lead_notes`;

CREATE TABLE `wp_rg_lead_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `lead_id` int(10) unsigned NOT NULL,
  `user_name` varchar(250) DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `value` longtext,
  PRIMARY KEY (`id`),
  KEY `lead_id` (`lead_id`),
  KEY `lead_user_key` (`lead_id`,`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


DROP TABLE IF EXISTS `wp_term_relationships`;

CREATE TABLE `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;

INSERT INTO wp_term_relationships VALUES("1","2","0");
INSERT INTO wp_term_relationships VALUES("2","2","0");
INSERT INTO wp_term_relationships VALUES("3","2","0");
INSERT INTO wp_term_relationships VALUES("4","2","0");
INSERT INTO wp_term_relationships VALUES("5","2","0");
INSERT INTO wp_term_relationships VALUES("6","2","0");
INSERT INTO wp_term_relationships VALUES("7","2","0");
INSERT INTO wp_term_relationships VALUES("1","1","0");
INSERT INTO wp_term_relationships VALUES("28","3","0");
INSERT INTO wp_term_relationships VALUES("27","3","0");
INSERT INTO wp_term_relationships VALUES("26","3","0");
INSERT INTO wp_term_relationships VALUES("25","3","0");
INSERT INTO wp_term_relationships VALUES("24","3","0");
INSERT INTO wp_term_relationships VALUES("23","3","0");
INSERT INTO wp_term_relationships VALUES("22","3","0");
INSERT INTO wp_term_relationships VALUES("31","1","0");
INSERT INTO wp_term_relationships VALUES("32","1","0");
INSERT INTO wp_term_relationships VALUES("984","1","0");
INSERT INTO wp_term_relationships VALUES("1001","1","0");
INSERT INTO wp_term_relationships VALUES("94","3","0");
INSERT INTO wp_term_relationships VALUES("93","3","0");
INSERT INTO wp_term_relationships VALUES("92","3","0");
INSERT INTO wp_term_relationships VALUES("91","3","0");
INSERT INTO wp_term_relationships VALUES("90","3","0");
INSERT INTO wp_term_relationships VALUES("89","3","0");
INSERT INTO wp_term_relationships VALUES("97","1","0");
INSERT INTO wp_term_relationships VALUES("124","1","0");
INSERT INTO wp_term_relationships VALUES("260","1","0");
INSERT INTO wp_term_relationships VALUES("280","1","0");
INSERT INTO wp_term_relationships VALUES("310","1","0");
INSERT INTO wp_term_relationships VALUES("345","1","0");
INSERT INTO wp_term_relationships VALUES("454","1","0");
INSERT INTO wp_term_relationships VALUES("463","1","0");
INSERT INTO wp_term_relationships VALUES("491","1","0");
INSERT INTO wp_term_relationships VALUES("527","1","0");
INSERT INTO wp_term_relationships VALUES("557","3","0");
INSERT INTO wp_term_relationships VALUES("556","3","0");
INSERT INTO wp_term_relationships VALUES("555","3","0");
INSERT INTO wp_term_relationships VALUES("554","3","0");
INSERT INTO wp_term_relationships VALUES("577","3","0");
INSERT INTO wp_term_relationships VALUES("581","3","0");
INSERT INTO wp_term_relationships VALUES("610","3","0");
INSERT INTO wp_term_relationships VALUES("609","3","0");
INSERT INTO wp_term_relationships VALUES("608","3","0");
INSERT INTO wp_term_relationships VALUES("630","3","0");
INSERT INTO wp_term_relationships VALUES("643","1","0");
INSERT INTO wp_term_relationships VALUES("640","4","0");
INSERT INTO wp_term_relationships VALUES("697","1","0");
INSERT INTO wp_term_relationships VALUES("662","3","0");
INSERT INTO wp_term_relationships VALUES("718","1","0");
INSERT INTO wp_term_relationships VALUES("736","1","0");
INSERT INTO wp_term_relationships VALUES("748","1","0");
INSERT INTO wp_term_relationships VALUES("759","1","0");
INSERT INTO wp_term_relationships VALUES("775","1","0");
INSERT INTO wp_term_relationships VALUES("789","1","0");
INSERT INTO wp_term_relationships VALUES("798","1","0");
INSERT INTO wp_term_relationships VALUES("803","1","0");
INSERT INTO wp_term_relationships VALUES("882","3","0");
INSERT INTO wp_term_relationships VALUES("866","3","0");
INSERT INTO wp_term_relationships VALUES("896","1","0");
INSERT INTO wp_term_relationships VALUES("897","1","0");
INSERT INTO wp_term_relationships VALUES("936","3","0");
INSERT INTO wp_term_relationships VALUES("935","3","0");
INSERT INTO wp_term_relationships VALUES("1037","3","0");
INSERT INTO wp_term_relationships VALUES("1039","1","0");
INSERT INTO wp_term_relationships VALUES("1054","1","0");
INSERT INTO wp_term_relationships VALUES("1070","1","0");
INSERT INTO wp_term_relationships VALUES("1079","1","0");
INSERT INTO wp_term_relationships VALUES("1086","1","0");
INSERT INTO wp_term_relationships VALUES("1092","1","0");
INSERT INTO wp_term_relationships VALUES("1096","1","0");
INSERT INTO wp_term_relationships VALUES("1101","1","0");
INSERT INTO wp_term_relationships VALUES("1108","1","0");
INSERT INTO wp_term_relationships VALUES("1128","1","0");

DROP TABLE IF EXISTS `wp_term_taxonomy`;

CREATE TABLE `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 AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;

INSERT INTO wp_term_taxonomy VALUES("1","1","category","","0","0");
INSERT INTO wp_term_taxonomy VALUES("2","2","link_category","","0","7");
INSERT INTO wp_term_taxonomy VALUES("3","3","nav_menu","","0","29");
INSERT INTO wp_term_taxonomy VALUES("4","4","category","Portrait Category for Blog","0","1");
INSERT INTO wp_term_taxonomy VALUES("5","5","category","Information about our portraits and studio.","0","0");
INSERT INTO wp_term_taxonomy VALUES("6","6","category","Special Offers Category for daily, monthly and unique offers","0","0");
INSERT INTO wp_term_taxonomy VALUES("7","7","portfoliosets","","0","0");

DROP TABLE IF EXISTS `wp_terms`;

CREATE TABLE `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 AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;

INSERT INTO wp_terms VALUES("1","Uncategorized","uncategorized","0");
INSERT INTO wp_terms VALUES("2","Blogroll","blogroll","0");
INSERT INTO wp_terms VALUES("3","Main Navigation","main-navigation","0");
INSERT INTO wp_terms VALUES("4","blog","blog","0");
INSERT INTO wp_terms VALUES("5","Information","info","0");
INSERT INTO wp_terms VALUES("6","Special Offers","specials","0");
INSERT INTO wp_terms VALUES("7","parent","parent","0");

DROP TABLE IF EXISTS `wp_usermeta`;

CREATE TABLE `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 AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;

INSERT INTO wp_usermeta VALUES("1","1","first_name","");
INSERT INTO wp_usermeta VALUES("2","1","last_name","");
INSERT INTO wp_usermeta VALUES("3","1","nickname","admin");
INSERT INTO wp_usermeta VALUES("4","1","description","");
INSERT INTO wp_usermeta VALUES("5","1","rich_editing","true");
INSERT INTO wp_usermeta VALUES("6","1","comment_shortcuts","false");
INSERT INTO wp_usermeta VALUES("7","1","admin_color","fresh");
INSERT INTO wp_usermeta VALUES("8","1","use_ssl","0");
INSERT INTO wp_usermeta VALUES("9","1","show_admin_bar_front","true");
INSERT INTO wp_usermeta VALUES("10","1","wp_capabilities","a:2:{s:13:\"administrator\";s:1:\"1\";s:17:\"gform_full_access\";s:1:\"1\";}");
INSERT INTO wp_usermeta VALUES("11","1","wp_user_level","10");
INSERT INTO wp_usermeta VALUES("12","1","dismissed_wp_pointers","wp330_toolbar,wp330_media_uploader,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,ngg-image_resize_pointer");
INSERT INTO wp_usermeta VALUES("13","1","show_welcome_panel","1");
INSERT INTO wp_usermeta VALUES("14","1","wp_dashboard_quick_press_last_post_id","1132");
INSERT INTO wp_usermeta VALUES("15","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\";}");
INSERT INTO wp_usermeta VALUES("16","1","metaboxhidden_nav-menus","a:3:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";}");
INSERT INTO wp_usermeta VALUES("17","1","nav_menu_recently_edited","3");
INSERT INTO wp_usermeta VALUES("18","1","closedpostboxes_page","a:0:{}");
INSERT INTO wp_usermeta VALUES("19","1","metaboxhidden_page","a:6:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";i:5;s:12:\"revisionsdiv\";}");
INSERT INTO wp_usermeta VALUES("20","1","wp_user-settings","imgsize=full&galcols=4&editor=html&ngg_show_update_notice196=1&ngg_upload_resize=1&align=none&galord=rand");
INSERT INTO wp_usermeta VALUES("21","1","wp_user-settings-time","1349851898");

DROP TABLE IF EXISTS `wp_users`;

CREATE TABLE `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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO wp_users VALUES("1","admin","$P$Btw6AQMrR8zu/64h/tx3ltDjvz3UY71","admin","admin@livingimagephotography.com.au","","2012-09-08 04:24:28","","0","admin");
