govkit-ca 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. data/LICENSE +1 -1
  2. data/README.md +2 -2
  3. data/Rakefile +1 -1
  4. data/govkit-ca.gemspec +8 -8
  5. data/lib/gov_kit-ca/postal_code/strategy/base.rb +33 -1
  6. data/lib/gov_kit-ca/postal_code/strategy/{cbc-ca.rb → cbc_ca.rb} +6 -13
  7. data/lib/gov_kit-ca/postal_code/strategy/{conservative-ca.rb → conservative_ca.rb} +2 -4
  8. data/lib/gov_kit-ca/postal_code/strategy/digital-copyright_ca.rb +27 -0
  9. data/lib/gov_kit-ca/postal_code/strategy/{elections-ca.rb → elections_ca.rb} +2 -4
  10. data/lib/gov_kit-ca/postal_code/strategy/{greenparty-ca.rb → greenparty_ca.rb} +3 -5
  11. data/lib/gov_kit-ca/postal_code/strategy/{liberal-ca.rb → liberal_ca.rb} +3 -5
  12. data/lib/gov_kit-ca/postal_code/strategy/{ndp-ca.rb → ndp_ca.rb} +3 -5
  13. data/lib/gov_kit-ca/postal_code/strategy/{parl-gc-ca.rb → parl_gc_ca.rb} +3 -5
  14. data/lib/gov_kit-ca/postal_code/{strategy.rb → strategy_set.rb} +1 -7
  15. data/lib/gov_kit-ca/postal_code.rb +9 -3
  16. data/lib/gov_kit-ca/version.rb +1 -1
  17. data/lib/gov_kit-ca.rb +2 -1
  18. data/spec/cbc_ca_spec.rb +13 -6
  19. data/spec/digital-copyright_ca_spec.rb +32 -0
  20. data/spec/elections_ca_spec.rb +7 -0
  21. data/spec/fixtures/cbc_ca/A1A1A1.response +11 -0
  22. data/spec/fixtures/cbc_ca/G0C2Y0.response +11 -0
  23. data/spec/fixtures/cbc_ca/H0H0H0.response +309 -0
  24. data/spec/fixtures/cbc_ca/K0A1K0.response +11 -0
  25. data/spec/fixtures/cbc_ca/T5S2B9.response +11 -0
  26. data/spec/fixtures/cbc_ca/X1B1B1.response +309 -0
  27. data/spec/fixtures/conservative_ca/A1A1A1.response +467 -0
  28. data/spec/fixtures/conservative_ca/G0C2Y0.response +467 -0
  29. data/spec/fixtures/conservative_ca/H0H0H0.response +467 -0
  30. data/spec/fixtures/conservative_ca/K0A1K0.response +467 -0
  31. data/spec/fixtures/conservative_ca/T5S2B9.response +467 -0
  32. data/spec/fixtures/conservative_ca/X1B1B1.response +467 -0
  33. data/spec/fixtures/digital-copyright_ca/A1A1A1.response +262 -0
  34. data/spec/fixtures/digital-copyright_ca/G0C2Y0.response +263 -0
  35. data/spec/fixtures/digital-copyright_ca/H0H0H0.response +278 -0
  36. data/spec/fixtures/digital-copyright_ca/K0A1K0.response +264 -0
  37. data/spec/fixtures/digital-copyright_ca/T5S2B9.response +267 -0
  38. data/spec/fixtures/digital-copyright_ca/X1B1B1.response +278 -0
  39. data/spec/fixtures/elections_ca/A1A1A1.response +12 -0
  40. data/spec/fixtures/elections_ca/G0C2Y0.response +12 -0
  41. data/spec/fixtures/elections_ca/H0H0H0.response +11 -0
  42. data/spec/fixtures/elections_ca/K0A1K0.response +11 -0
  43. data/spec/fixtures/elections_ca/T5S2B9.response +12 -0
  44. data/spec/fixtures/elections_ca/X1B1B1.response +11 -0
  45. data/spec/fixtures/greenparty_ca/A1A1A1.response +13 -0
  46. data/spec/fixtures/greenparty_ca/G0C2Y0.response +13 -0
  47. data/spec/fixtures/greenparty_ca/H0H0H0.response +13 -0
  48. data/spec/fixtures/greenparty_ca/K0A1K0.response +13 -0
  49. data/spec/fixtures/greenparty_ca/T5S2B9.response +13 -0
  50. data/spec/fixtures/greenparty_ca/X1B1B1.response +13 -0
  51. data/spec/fixtures/liberal_ca/A1A1A1.response +582 -0
  52. data/spec/fixtures/liberal_ca/G0C2Y0.response +582 -0
  53. data/spec/fixtures/liberal_ca/H0H0H0.response +663 -0
  54. data/spec/fixtures/liberal_ca/K0A1K0.response +663 -0
  55. data/spec/fixtures/liberal_ca/T5S2B9.response +663 -0
  56. data/spec/fixtures/liberal_ca/X1B1B1.response +663 -0
  57. data/spec/fixtures/ndp_ca/A1A1A1.response +12 -0
  58. data/spec/fixtures/ndp_ca/G0C2Y0.response +12 -0
  59. data/spec/fixtures/ndp_ca/H0H0H0.response +12 -0
  60. data/spec/fixtures/ndp_ca/K0A1K0.response +12 -0
  61. data/spec/fixtures/ndp_ca/T5S2B9.response +12 -0
  62. data/spec/fixtures/ndp_ca/X1B1B1.response +12 -0
  63. data/spec/fixtures/parl_gc_ca/A1A1A1.response +337 -0
  64. data/spec/fixtures/parl_gc_ca/G0C2Y0.response +337 -0
  65. data/spec/fixtures/parl_gc_ca/H0H0H0.response +226 -0
  66. data/spec/fixtures/parl_gc_ca/K0A1K0.response +784 -0
  67. data/spec/fixtures/parl_gc_ca/T5S2B9.response +511 -0
  68. data/spec/fixtures/parl_gc_ca/X1B1B1.response +226 -0
  69. data/spec/greenparty_ca_spec.rb +7 -0
  70. data/spec/liberal_ca_spec.rb +10 -2
  71. data/spec/ndp_ca_spec.rb +7 -0
  72. data/spec/postal_code_spec.rb +13 -0
  73. data/spec/spec_helper.rb +13 -0
  74. data/spec/strategy_set_spec.rb +0 -0
  75. data/tasks/postal-code-for-districts.csv +212 -0
  76. data/tasks/tasks.rb +73 -0
  77. metadata +180 -98
  78. data/lib/gov_kit-ca/postal_code/strategy/digital_copyright-ca.rb +0 -28
  79. data/tasks/rid_to_edid.rb +0 -136
@@ -0,0 +1,663 @@
1
+ HTTP/1.1 200 OK
2
+ Date: Sun, 05 Jun 2011 03:17:19 GMT
3
+ Server: Apache
4
+ Last-Modified: Sun, 05 Jun 2011 03:15:22 GMT
5
+ Vary: Cookie,Accept-Encoding
6
+ Expires: Sun, 05 Jun 2011 04:15:22 GMT
7
+ Pragma: public
8
+ Cache-Control: public, must-revalidate, proxy-revalidate
9
+ Etag: 3530f77e27d7911ada40dec6c8cbd24d
10
+ X-Pingback: http://www.liberal.ca/xmlrpc.php
11
+ Connection: close
12
+ Transfer-Encoding: chunked
13
+ Content-Type: text/html; charset=UTF-8
14
+
15
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
16
+ <html xmlns:fb="http://www.facebook.com/2008/fbml" dir="ltr" lang="en-US">
17
+ <head>
18
+ <link rel='stylesheet' href='http://www.liberal.ca/wp-content/plugins/wp-minify/min/?f=wp-content/themes/election/style.css,wp-content/plugins/wp-faq/css/default/wp-faq.css,wp-content/themes/liberal-parent/includes/reset.css,wp-content/themes/liberal-parent/includes/general.css,wp-content/themes/liberal-parent/includes/grid-base.css,wp-content/themes/liberal-parent/includes/masthead.css,wp-content/themes/liberal-parent/includes/inner-masthead.css,wp-content/themes/liberal-parent/includes/feature-slideshow.css,wp-content/themes/liberal-parent/includes/media.css,wp-content/themes/liberal-parent/includes/events.css,wp-content/themes/liberal-parent/includes/caucus-stream.css,wp-content/themes/liberal-parent/includes/colorbox.css,wp-content/themes/liberal-parent/includes/simple-modal.css,wp-content/plugins/flickrpress/style.css,wp-content/plugins/sharer/css/sharer.css,wp-content/plugins/wp-paginate/wp-paginate.css,wp-content/plugins/quotes-collection/quotes-collection.css,wp-content/plugins/tubepress/ui/gallery/css/tubepress.css,wp-content/plugins/wordpress-popular-posts/style/wpp.css&amp;m=1307135106' type='text/css' media='screen' />
19
+ <script type='text/javascript' src='http://www.liberal.ca/wp-content/plugins/wp-minify/min/?f=wp-content/themes/liberal-parent/includes/jquery-1.4.2.min.js,wp-content/plugins/wp-faq/js/wp-faq.js,wp-content/themes/liberal-parent/includes/jquery.json-2.2.min.js,wp-content/themes/liberal-parent/includes/jquery.colorbox.js,wp-content/themes/liberal-parent/includes/jquery.simplemodal-1.3.3.min.js,wp-content/themes/liberal-parent/includes/jquery-ui-1.8.4.min.js,wp-content/themes/liberal-parent/includes/jquery.hoverIntent.min.js,wp-content/themes/liberal-parent/includes/jquery.tools.min.js,wp-content/themes/liberal-parent/includes/common.js,wp-content/themes/liberal-parent/includes/jquery.centredScroller.js,wp-content/plugins/flickrpress/flickr.js,wp-content/plugins/sharer/js/sharer.js,wp-content/plugins/sharer/js/jquery.validate.min.js,wp-content/plugins/sharer/js/contacts_import.js,wp-content/plugins/quotes-collection/quotes-collection.js,wp-content/plugins/tubepress/ui/lib/tubepress.js&amp;m=1306767988'></script>
20
+ <link rel="pingback" href="http://www.liberal.ca/xmlrpc.php" />
21
+ <meta name="description" content="Discover the Liberal Party of Canada—and find out what we stand for. Read the blog, meet Interim Leader Bob Rae and our MPs, join the Party, donate &amp; more." />
22
+ <meta charset="UTF-8" />
23
+ <meta name="description" content="Discover the Liberal Party of Canada—and find out what we stand for. Read the blog, meet Interim Leader Bob Rae and our MPs, join the Party, donate &amp; more." />
24
+ <title>Liberal Party of Canada - Canada&#039;s progressive, compassionate &amp; responsible alternative</title>
25
+ <meta name="robots" content="index,follow" />
26
+ <link rel="alternate" type="application/rss+xml" href="http://www.liberal.ca/feed/" title="Liberal Party of Canada Posts RSS feed" />
27
+ <meta property="og:sitename" content="Liberal Party of Canada" /><meta name="title" content="My take on the Throne Speech" />
28
+ <meta property="og:title" content="My take on the Throne Speech" />
29
+ <meta name="description" content="I left the House today wishing for Canadians a government that could commit to making policies based on evidence necessary for building a sustainable society and economy, a Government that would rebuild our presence on the world stage while promoting National unity at home." />
30
+ <meta property="og:description" content="I left the House today wishing for Canadians a government that could commit to making policies based on evidence necessary for building a sustainable society and economy, a Government that would rebuild our presence on the world stage while promoting National unity at home." />
31
+ <link rel="image_src" href="http://cdn2.liberal.ca/files/2010/06/brae_1.png" />
32
+ <meta name="thumbnail" content="http://cdn2.liberal.ca/files/2010/06/brae_1.png" />
33
+ <meta property="og:image" content="http://cdn2.liberal.ca/files/2010/06/brae_1.png" />
34
+ <script type="text/javascript">//<![CDATA[
35
+ var _gaq = _gaq || [];
36
+ _gaq.push(['_setAccount','UA-7046703-1']);
37
+ _gaq.push(['_setAllowLinker',true],['_setDomainName','.liberal.ca'],['_setAllowHash', false],['_trackPageview']);
38
+ (function() {
39
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
40
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
41
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
42
+ })();
43
+ //]]></script>
44
+ <script type='text/javascript'>
45
+ /* <![CDATA[ */
46
+ var JS_lang = {
47
+ siteURL: "http://www.liberal.ca",
48
+ more: "Continue Reading &#x25BE;",
49
+ hide: "Hide &#9652;",
50
+ thankyou: "Thank you",
51
+ expand: "Collapse",
52
+ collapse: "Expand",
53
+ post_comment_facebook: "I just posted a comment to facebook, read it here: ",
54
+ shareComment: "Share your comment with your friends!",
55
+ commentEmpty: "Please enter a comment",
56
+ Password: "Password",
57
+ ConfirmPassword: "Confirm password",
58
+ CurrentPassword: "Current password",
59
+ NewPassword: "New password",
60
+ ConfirmNewPassword: "Confirm new password",
61
+ LongerPass: "Your password must be atleast 6 characters long",
62
+ PasswordsDontMatch: "Your passwords must match",
63
+ ValidEmail: "Please enter a valid email address",
64
+ NoFirstName: "Please enter your first name",
65
+ NoLastName: "Please enter your last name",
66
+ LoginErrors: "Please enter the words written below"
67
+ };
68
+ /* ]]> */
69
+ </script>
70
+ <script type='text/javascript'>
71
+ /* <![CDATA[ */
72
+ var WPSharerSettings = {
73
+ SHARER_URLPATH: "http://www.liberal.ca/wp-content/plugins/sharer/",
74
+ LANG_PATH: "",
75
+ validation_required_FirstName: "This field is required",
76
+ validation_required_LastName: "This field is required",
77
+ validation_required_Email: "This field is required",
78
+ validation_invalid_Email: "Specify a valid Email",
79
+ validation_required_RecipientsEmails: "This field is required",
80
+ validation_required_Feedback: "This field is required"
81
+ };
82
+ /* ]]> */
83
+ </script>
84
+ <script type="text/javascript">var ajaxurl = "http://www.liberal.ca/wp-admin/admin-ajax.php?lang=en";</script><!-- Quotes Collection -->
85
+ <script type="text/javascript">
86
+ quotescollection_init('http://www.liberal.ca/wp-content/plugins/quotes-collection/quotes-collection-ajax.php', 'Next quote&nbsp;&raquo;', 'Loading...', 'Error getting quote', '30');
87
+ </script>
88
+ <script type="text/javascript">function getTubePressBaseUrl(){return "http://www.liberal.ca/wp-content/plugins/tubepress";}</script>
89
+ <!-- This site is optimized with the Yoast WordPress SEO plugin v0.2.1 - http://yoast.com/wordpress/seo/ -->
90
+ <link rel="canonical" href="http://www.liberal.ca/" />
91
+ <!-- / Yoast WordPress SEO plugin. -->
92
+ <script type="text/javascript">
93
+ var wpfaqAjax = "http://www.liberal.ca/wp-content/plugins/wp-faq/wp-faq-ajax.php";
94
+ var wpfaqUrl = "http://www.liberal.ca/wp-content/plugins/wp-faq";
95
+ function wpfaq_search(number) {
96
+ jQuery("#wpfaqsearchloading" + number).show();
97
+ jQuery("#wpfaqquestions" + number).load(wpfaqAjax + "?cmd=search&number=" + number, jQuery("#wpfaqsearchform" + number).serialize(), function() {
98
+ jQuery("#wpfaqsearchloading" + number).hide();
99
+ wpfaq_scroll(jQuery("#wpfaqsearch" + number));
100
+ });
101
+ return false;
102
+ }
103
+ function wpfaq_ask(number) {
104
+ jQuery('#wpfaqaskloading' + number).show();
105
+ jQuery('#wpfaqask' + number).load(wpfaqAjax + "?cmd=ask&number=" + number, jQuery("#wpfaqaskform" + number).serialize(), function() {
106
+ jQuery("#wpfaqaskloading" + number).hide();
107
+ wpfaq_scroll(jQuery("#wpfaqask" + number));
108
+ });
109
+ return false;
110
+ }
111
+ function wpfaq_scroll(selector) {
112
+ var targetOffset = jQuery(selector).offset().top;
113
+ jQuery('html,body').animate({scrollTop: targetOffset}, 500);
114
+ }
115
+ </script>
116
+ <!-- Wordpress Popular Posts v2.1.4 -->
117
+ <!-- End Wordpress Popular Posts v2.1.4 -->
118
+ <script type="text/javascript"> jQuery(document).ready( function() { jQuery("a.confirm").click( function() { if ( confirm( 'Are you sure?' ) ) return true; else return false; }); });</script>
119
+ <script type="text/javascript">
120
+ document.domain = 'liberal.ca' </script>
121
+ <script type="text/javascript" src="http://use.typekit.com/xlj4lin.js"></script>
122
+ <script type="text/javascript">try{Typekit.load();}catch(e){}</script>
123
+ </head>
124
+ <body class="home-page hfeed">
125
+ <div id="PopupModal" style="display: none;">
126
+ <div id="login_options" class="login_box">
127
+ <div id="login_logo" style="margin-bottom:30px;"><img src="http://cdn2.liberal.ca/wp-content/themes/liberal-parent/images/login_logo.png" /></div>
128
+ <h4 class="myriad" style="margin-bottom:10px;padding-left:85px;">Log in to Liberal.ca</h4>
129
+ <p style="line-height:16px;">Please log in with your Liberal ID.<br><strong>Your Liberal Extranet credentials can be used</strong>.<br> <span id="main_errormsg" class="login_errormsg"></span> </p>
130
+ <div id="login_wrapper" style="clear:both;">
131
+ <div style="width:200px;float:left;">
132
+ <div class="input-login-submit">
133
+ <input style="width:150px !important;margin-right:20px;margin-top:20px !important;" type="button" value="Create an account" name="commentPopupButton" class="button" onclick="changeTo('#login_register')" >
134
+ </div>
135
+ </div>
136
+ </div>
137
+ <img src="http://cdn3.liberal.ca/wp-content/themes/liberal-parent/images/or.png" border="0" alt="" style="float:left; padding-left: 5px;padding-right: 15px;">
138
+ <div style="width:210px; float:left; padding-bottom:15px;">
139
+ <form action="" id="CommentLoginOptions" name="CommentLoginOptions" onsubmit="LiberalLogin('#CommentLoginOptions');return false;">
140
+ <input type="text" name="Email" id="LoginEmailOptions" onkeypress="IEsubmitOnEnter(this,event);" value="Email" onfocus="clearText(this)" onblur="clearText(this)">
141
+ <input type="password" name="Password" class="pwd" onkeypress="IEsubmitOnEnter(this,event);" id="LoginPasswordOptions" >
142
+ <input type="hidden" name="action" value="Liberal_signon">
143
+ <span style="color: #999; font-weight:bold; cursor:pointer; line-height: 10px;" onclick="changeTo('#forgot_password')"> Forgot password?</span>
144
+ <div class="input-login-submit">
145
+ <input type="submit" onclick="LiberalLogin('#CommentLoginOptions');return false;" class="button" value="Login">
146
+ </div>
147
+ </form>
148
+ </div>
149
+ </div>
150
+ <div id="login_register" class="login_box">
151
+ <div id="login_logo" style="margin-bottom:20px; margin-top:-10px;"><img src="http://cdn2.liberal.ca/wp-content/themes/liberal-parent/images/login_logo.png" /></div>
152
+ <h4 class="createaccounthd myriad" style="padding-left:85px;">Create an account</h4>
153
+ <p style="line-height:16px;">
154
+ <b>Have an Extranet Account?<span style="cursor: pointer;text-decoration:underline;" onclick="changeTo('#login_options')">Login here!</span></b>.
155
+ <p><span id="create_errormsg" class="login_errormsg"></span></p>
156
+ <p style="line-height:16px;clear:both;padding-bottom:8px;">One step! Just fill these fields in.</p>
157
+ <form action="" id="CommentCreateUser" name="CommentCreateUser" onsubmit="LiberalCreateUser('#CommentCreateUser');return false;">
158
+ <input type="hidden" name="action" value="Liberal_CreateUser">
159
+ <input type="hidden" name="returnURL" id="returnURL" value="">
160
+ <input type="text" name="FirstName" id="RegisterFirstName" value="First Name" onfocus="clearText(this)" onblur="clearText(this)">
161
+ <input type="text" name="LastName" id="RegisterLastName" value="Last Name" onfocus="clearText(this)" onblur="clearText(this)">
162
+ <input type="text" name="Email" id="RegisterEmail" value="Email" onfocus="clearText(this)" onblur="clearText(this)">
163
+ <input type="text" name="PostalCode" id="RegisterPostalCode" value="Postal Code" onfocus="clearText(this)" onblur="clearText(this)">
164
+ <input type="password" class="pwd" name="RegisterPassword" id="RegisterPassword" >
165
+ <input type="password" class="pwd2" name="RegisterPassword2" id="RegisterPassword2" >
166
+ <input type="checkbox" name="emailUpdates" id="emailUpdates" value="true" checked><span style="float:left;">Receive occasional updates from the Liberal Party of Canada</span>
167
+ <div id="isMemberLogin">
168
+ Please provide your date of birth and/or Membership ID<br>
169
+ <input type="text" name="DoB" id="RegisterDoB" value="YYYY/MM/DD" >
170
+ <input type="text" name="MembershipID" id="MembershipID" value="Membership ID" onfocus="clearText(this)" onblur="clearText(this)">
171
+ </div>
172
+ <div id="RegisterBottomRight" class="input-login-submit">
173
+ <input type="submit" class="button" onclick="LiberalCreateUser('#CommentCreateUser');return false;" value="Create account">
174
+ </div>
175
+ <div class="login_noaccount">
176
+ Already have an account? Sign in: <span onclick="changeTo('#login_options')">with your email</span>.
177
+ </div>
178
+ </form>
179
+ </div>
180
+ <div id="login_moreinfo" class="login_box">
181
+ <div id="login_logo" style="margin-bottom:200px;"><img src="http://cdn2.liberal.ca/wp-content/themes/liberal-parent/images/login_logo.png" /></div>
182
+ <h4 class="myriad" style="padding-left:85px;">Please confirm your email &amp; postal code</h4>
183
+ <p style="line-height:16px;"><span id="facebook_errormsg" class="login_errormsg"></span></p>
184
+ <form action="" id="FacebookInfoForm" name="FacebookInfoForm" onsubmit="LiberalFacebookFinish('#FacebookInfoForm');return false;">
185
+ <p id="facebookEmailInfo" style="line-height:16px;">Sorry we do not accept Facebook Proxy email addresses. Please enter a real email address.</p>
186
+ <input type="text" name="FacebookEmail" id="FacebookEmail" value="Email" ><br>
187
+ <input type="text" name="FacebookPostalCode" id="FacebookPostalCode" value="Postal Code" onfocus="clearText(this)" onblur="clearText(this)"><br>
188
+ <input type="checkbox" name="emailUpdates" id="FBemailUpdates" value="true" checked><span id="FBreceiveUpdates" style="color: #666">Receive occasional updates from the Liberal Party of Canada</span><br>
189
+ <input type="hidden" name="action" value="Liberal_UpdateFacebook">
190
+ <div class="input-login-submit">
191
+ <input type="button" onclick="LiberalFacebookFinish('#FacebookInfoForm');return false;" name="SubmitInfo" id="SubmitInfo" class="button" value="Done">
192
+ </div>
193
+ </form>
194
+ </div>
195
+ <div id="modal_changedpass" class="login_box">
196
+ <div id="login_logo"><img src="http://cdn2.liberal.ca/wp-content/themes/liberal-parent/images/login_logo.png" /></div>
197
+ <h4 class="myriad" >New password sent</h4>
198
+ <p style="line-height:16px;">Please <b>check your email</b> your your new password. <br>When logged in, click your name at the top right of the page to modify your password.</p>
199
+ <div class="input-login-submit">
200
+ <input type="button" onclick="$j.colorbox.close();" name="Submit" id="Submit" class="button" value="Return to page">
201
+ </div>
202
+ </form>
203
+ </div>
204
+ <div id="login_thanks" class="login_box">
205
+ <div id="login_logo"><img src="http://cdn2.liberal.ca/wp-content/themes/liberal-parent/images/login_logo.png" /></div>
206
+ <h4 class="myriad" style="padding-left:85px;">Account Created!</h4>
207
+ <p style="margin-bottom:10px ;line-height:19px;font-size:16px;">Please <strong>check your email</strong> for a link to finish the account creation process. </p>
208
+ <p style="line-height:19px;font-size:16px;">You must click that link to be able to comment.</p>
209
+ <div class="input-login-submit" style="margin-left: 100px;margin-top: 15px;">
210
+ <input type="button" onclick="$j.colorbox.close();" name="Submit" id="Submit" class="button" value="Return to page">
211
+ </div>
212
+ </form>
213
+ </div>
214
+ <div id="forgot_password" class="login_box">
215
+ <div id="login_logo" style="margin-bottom: 60px;"><img src="http://cdn2.liberal.ca/wp-content/themes/liberal-parent/images/login_logo.png" /></div>
216
+ <h4 class="myriad" style="padding-left:85px;">Forgot your Password?</h4>
217
+ <form action="" id="ForgotPassword" name="ForgotPassword" onsubmit="LiberalForgotPassword('#ForgotPassword');return false;">
218
+ <input type="hidden" name="action" value="Liberal_ForgotPassword">
219
+ <p style="line-height:16px;">Please type in your email below and instructions on how to reset your password will be sent to you. <span style="font-weight:bold;" id="ForgotPasswordEmailSentMessage" >Instructions on how to reset your password have been sent to that address.</span></p>
220
+ <input type="text" name="EmailPassword" id="EmailPassword" value="Email" onfocus="clearText(this)" onblur="clearText(this)">
221
+ <div class="input-login-submit">
222
+ <input type="button" onclick="LiberalForgotPassword('#ForgotPassword');return false;" name="SubmitInfo" id="SubmitInfo" class="button" value="Send Instructions">
223
+ </div>
224
+ <div class="login_noaccount">
225
+ <span style="font-weight:bold; cursor:pointer;" onclick="changeTo('#login_options')">Click here to return</span>
226
+ </div>
227
+ </form>
228
+ </div>
229
+ <div id="modal_ChangePassword" class="login_box">
230
+ <div id="login_logo" style="margin-bottom:220px;"><img src="http://cdn2.liberal.ca/wp-content/themes/liberal-parent/images/login_logo.png" /></div>
231
+ </div>
232
+ <div id="modal_splash" style="width:960px; height:400px; background-image:url('http://cdn.liberal.ca/wp-content/themes/liberal-parent/images/splash/splashmi_e3.jpg'); background-repeat:none;">
233
+ <form id="splashForm" style="position: absolute; top:260px; left:45px;" action="#" method="post" onsubmit="LiberalSplash('#splashForm'); return false">
234
+ <input type="text" name="SplashFirstName" id="SplashFirstName" value="First Name" onfocus="clearText(this)" onblur="clearText(this)">
235
+ <input type="text" name="SplashLastName" id="SplashLastName" value="Last Name" onfocus="clearText(this)" onblur="clearText(this)">
236
+ <input type="text" name="SplashEmail" id="SplashEmail" value="Email" onfocus="clearText(this)" onblur="clearText(this)">
237
+ <input type="text" name="SplashPostalCode" id="SplashPostalCode" value="Postal Code" onfocus="clearText(this)" onblur="clearText(this)">
238
+ <input type="hidden" name="action" value="Liberal_Splash">
239
+ <div class="input-login-submit">
240
+ <input class="button" type="submit" onclick="LiberalSplash('#splashForm');$j.colorbox.close(); return false" value="Submit" />
241
+ &nbsp;
242
+ <span style="text-decoration: underline;font-weight:bold; color: #fff;cursor:pointer" onclick="$j.colorbox.close()">Skip &raquo;</span>
243
+ </div>
244
+ </form>
245
+ </div>
246
+ <script type="text/javascript">
247
+ if (typeof showSplash == 'function'){
248
+ showSplash();
249
+ }
250
+ </script>
251
+ </div>
252
+ <div id="fb-root"></div>
253
+ <div id="lib-header-wrapper">
254
+ <div id="lib-header">
255
+ <h1><a href="http://www.liberal.ca">Liberal</a></h1>
256
+ <div class="lib-nav-wrapper en">
257
+ <ul class="lib-nav">
258
+ <li class="ignatieff lib-nav-group ngg-8">
259
+ <a href="http://www.liberal.ca/extraordinary-convention/" class="lib-nav-item">Extraordinary Convention</a>
260
+ <div class="lib-nav-sub ngg">
261
+ <div class="ngg-wrap" style="display: none;">
262
+ <div class="ng ng-2">
263
+ <div class="figure"><a href="http://www.liberal.ca/?page_id=31506"><img src="http://cdn2.liberal.ca/wp-content/themes/liberal-parent/images/nav/ignatieff.jpg" width="131" height="160" alt="" /></a></div>
264
+ <a href="http://www.liberal.ca/?page_id=31506"><em>Meet Michael<br />Ignatieff</em></a>
265
+ </div>
266
+ <div class="ng ng-2">
267
+ <strong class="title myriad">In this section</strong>
268
+ <ul>
269
+ <li><a href="http://www.liberal.ca/?page_id=31506">Introduction</a></li>
270
+ <li><a href="http://www.liberal.ca/?page_id=60">Biography</a></li>
271
+ <li><a href="http://www.liberal.ca/newsroom/speeches/">Speeches</a></li>
272
+ <li><a href="http://www.liberal.ca/michael_ignatieff/publications/">Publications</a></li>
273
+ <li><a href="http://www.liberal.ca/newsroom/photos-and-video/">Photos &amp; Video</a></li>
274
+ </ul>
275
+ </div>
276
+ <div class="ng ng-4 last">
277
+ <ul class="inline ignatieff-social-media-links">
278
+ <li><a class="icon-facebook" href="http://www.facebook.com/MichaelIgnatieff/" target="_blank" title="Facebook"></a></li>
279
+ <li><a class="icon-twitter" href="http://twitter.com/m_ignatieff/" target="_blank" title="Twitter"></a></li>
280
+ <li><a class="icon-youtube" href="http://www.youtube.com/liberalvideo/" target="_blank" title="YouTube"></a></li>
281
+ <li><a class="icon-flickr" href="http://www.flickr.com/photos/ignatieff/" target="_blank" title="Flickr"></a></li>
282
+ <li><a class="icon-rss" href="http://feeds.liberal.ca/Blog-LiberalPartyofCanada/" target="_blank" title="RSS"></a></li>
283
+ </ul>
284
+ <hr />
285
+ <strong class="title myriad">Recent speeches &amp; statements</strong>
286
+ <ul>
287
+ <li><a href="http://www.liberal.ca/newsroom/speeches/speech-le-qubec-le-pouvoir-de-changer-les-choses/">Speech: Le Québec a le pouvoir de changer les choses&nbsp;»</a></li><li><a href="http://www.liberal.ca/newsroom/speeches/speech-house-commons-introduce-motion-nonconfidence/">Speech in the House of Commons to Introduce a Motion of Non-Confidence&nbsp;»</a></li><li><a href="http://www.liberal.ca/newsroom/speeches/michael-ignatieffs-speech-liberal-caucus-candidates-winter-caucus-2011/">Michael Ignatieff’s speech to Liberal Caucus and Candidates &#8211; Winter Caucus 2011&nbsp;»</a></li> </ul>
288
+ </div>
289
+ </div>
290
+ </div>
291
+ </li>
292
+ <li class="mp lib-nav-group ngg-8">
293
+ <a href="http://www.liberal.ca/caucus/" class="lib-nav-item">MPs &amp; Senators</a>
294
+ <div class="lib-nav-sub ngg">
295
+ <div class="ngg-wrap">
296
+ <div class="ng ng-2">
297
+ <strong class="title myriad">Liberal Stream</strong>
298
+ <div class="figure"><a href="http://www.liberal.ca/caucus-stream/"><img src="http://cdn2.liberal.ca/wp-content/themes/liberal-parent/images/nav/stream.png" width="115" height="120" alt=""></a></div>
299
+ <a href="http://www.liberal.ca/caucus-stream/"><em>Find out what our caucus is thinking &amp; doing</em></a>
300
+ </div>
301
+ <div class="ng ng-2">
302
+ <strong class="title myriad">In this section</strong>
303
+ <ul>
304
+ <!--<li><a href="http://www.liberal.ca/caucus-stream/">Liberal Stream</a></li>-->
305
+ <li><a href="http://www.liberal.ca/mp">Members of Parliament</a></li>
306
+ <li><a href="http://www.liberal.ca/critics">Critics</a></li>
307
+ <li><a href="http://www.liberal.ca/senators">Senators</a></li>
308
+ </ul>
309
+ </div>
310
+ <div class="ng ng-4 last">
311
+ <div class="figure"><img src="http://cdn3.liberal.ca/wp-content/themes/liberal-parent/images/nav/mp.jpg" width="283" height="53" alt=""></div>
312
+ <strong class="title myriad">Liberal Caucus Members</strong>
313
+ <form action="#">
314
+ <fieldset>
315
+ <select onchange="eval(this.value);" name="mp-list" id="mp-list-menu">
316
+ <option>Select an MP</option>
317
+ <option>&nbsp;</option>
318
+ <option value="window.location = 'http://www.liberal.ca/mp/scott-andrews'" >Scott Andrews</option><option value="window.location = 'http://www.liberal.ca/mp/mauril-belanger'" >Mauril Bélanger</option><option value="window.location = 'http://www.liberal.ca/mp/carolyn-bennett'" >Carolyn Bennett</option><option value="window.location = 'http://www.liberal.ca/mp/scott-brison'" >Scott Brison</option><option value="window.location = 'http://www.liberal.ca/mp/gerry-byrne'" >Gerry Byrne</option><option value="window.location = 'http://www.liberal.ca/mp/sean-casey'" >Sean Casey</option><option value="window.location = 'http://www.liberal.ca/mp/denis-coderre'" >Denis Coderre</option><option value="window.location = 'http://www.liberal.ca/mp/irwin-cotler'" >Irwin Cotler</option><option value="window.location = 'http://www.liberal.ca/mp/rodger-cuzner'" >Rodger Cuzner</option><option value="window.location = 'http://www.liberal.ca/mp/stephane-dion'" >Stéphane Dion</option><option value="window.location = 'http://www.liberal.ca/mp/kirsty-duncan'" >Kirsty Duncan</option><option value="window.location = 'http://www.liberal.ca/mp/wayne-easter'" >Wayne Easter</option><option value="window.location = 'http://www.liberal.ca/mp/mark-eyking'" >Mark Eyking</option><option value="window.location = 'http://www.liberal.ca/mp/judy-foote'" >Judy Foote</option><option value="window.location = 'http://www.liberal.ca/mp/hedy-fry'" >Hedy Fry</option><option value="window.location = 'http://www.liberal.ca/mp/marc-garneau'" >Marc Garneau</option><option value="window.location = 'http://www.liberal.ca/mp/ralph-goodale'" >Ralph Goodale</option><option value="window.location = 'http://www.liberal.ca/mp/theodore-hsu'" >Ted Hsu</option><option value="window.location = 'http://www.liberal.ca/mp/jim-karygiannis'" >Jim Karygiannis</option><option value="window.location = 'http://www.liberal.ca/mp/kevin-lamoureux'" >Kevin Lamoureux</option><option value="window.location = 'http://www.liberal.ca/mp/dominic-leblanc'" >Dominic Leblanc</option><option value="window.location = 'http://www.liberal.ca/mp/lawrence-macaulay'" >Lawrence MacAulay</option><option value="window.location = 'http://www.liberal.ca/mp/john-mccallum'" >John McCallum</option><option value="window.location = 'http://www.liberal.ca/mp/david-mcguinty'" >David McGuinty</option><option value="window.location = 'http://www.liberal.ca/mp/john-mckay'" >John McKay</option><option value="window.location = 'http://www.liberal.ca/mp/joyce-murray'" >Joyce Murray</option><option value="window.location = 'http://www.liberal.ca/mp/massimo-pacetti'" >Massimo Pacetti</option><option value="window.location = 'http://www.liberal.ca/mp/bob-rae'" >Bob Rae</option><option value="window.location = 'http://www.liberal.ca/mp/geoff-regan'" >Geoff Regan</option><option value="window.location = 'http://www.liberal.ca/mp/francis-scarpaleggia'" >Francis Scarpaleggia</option><option value="window.location = 'http://www.liberal.ca/mp/judy-sgro'" >Judy Sgro</option><option value="window.location = 'http://www.liberal.ca/mp/scott-simms'" >Scott Simms</option><option value="window.location = 'http://www.liberal.ca/mp/justin-trudeau'" >Justin Trudeau</option><option value="window.location = 'http://www.liberal.ca/mp/frank-valeriote'" >Frank Valeriote</option> </select>
319
+ </fieldset>
320
+ </form>
321
+ <form action="#">
322
+ <fieldset>
323
+ <select name="mp-list" onchange="eval(this.value);" id="senator-list-menu" style="margin-top:5px;">
324
+ <option>Select a Senator</option>
325
+ <option>&nbsp;</option>
326
+ <option value="window.location = 'http://www.liberal.ca/senators/marie-p-charette-poulin'" >Marie-P. (Charette) Poulin</option><option value="window.location = 'http://www.liberal.ca/senators/george-baker'" >George Baker</option><option value="window.location = 'http://www.liberal.ca/senators/thomas-banks'" >Thomas Banks</option><option value="window.location = 'http://www.liberal.ca/senators/catherine-callbeck'" >Catherine Callbeck</option><option value="window.location = 'http://www.liberal.ca/senators/larry-campbell'" >Larry Campbell</option><option value="window.location = 'http://www.liberal.ca/senators/sharon-carstairs'" >Sharon Carstairs</option><option value="window.location = 'http://www.liberal.ca/senators/maria-chaput'" >Maria Chaput</option><option value="window.location = 'http://www.liberal.ca/senators/jane-cordy'" >Jane Cordy</option><option value="window.location = 'http://www.liberal.ca/senators/james-cowan'" >James Cowan</option><option value="window.location = 'http://www.liberal.ca/senators/romeo-dallaire'" >Roméo Dallaire</option><option value="window.location = 'http://www.liberal.ca/senators/dennis-dawson'" >Dennis Dawson</option><option value="window.location = 'http://www.liberal.ca/senators/joseph-day'" >Joseph A. Day</option><option value="window.location = 'http://www.liberal.ca/senators/pierre-de-bane'" >Pierre De Bané</option><option value="window.location = 'http://www.liberal.ca/senators/percy-downe'" >Percy Downe</option><option value="window.location = 'http://www.liberal.ca/senators/lillian-eva-dyck'" >Lillian Dyck</option><option value="window.location = 'http://www.liberal.ca/senators/arthur-eggleton'" >Art Eggleton</option><option value="window.location = 'http://www.liberal.ca/senators/joyce-fairbairn'" >Joyce Fairbairn</option><option value="window.location = 'http://www.liberal.ca/senators/francis-fox'" >Francis Fox</option><option value="window.location = 'http://www.liberal.ca/senators/joan-fraser'" >Joan Fraser</option><option value="window.location = 'http://www.liberal.ca/senators/george-furey'" >George Furey</option><option value="window.location = 'http://www.liberal.ca/senators/mac-harb'" >Mac Harb</option><option value="window.location = 'http://www.liberal.ca/senators/cline-hervieux-payette'" >Céline Hervieux-Payette</option><option value="window.location = 'http://www.liberal.ca/senators/elizabeth-hubley'" >Elizabeth Hubley</option><option value="window.location = 'http://www.liberal.ca/senators/mobina-jaffer'" >Mobina Jaffer</option><option value="window.location = 'http://www.liberal.ca/senators/serge-joyal'" >Serge Joyal</option><option value="window.location = 'http://www.liberal.ca/senators/j-colin-r-kenny'" >Colin Kenny</option><option value="window.location = 'http://www.liberal.ca/senators/jean-lapointe'" >Jean-Marie Lapointe</option><option value="window.location = 'http://www.liberal.ca/senators/rose-marie-losier-cool'" >Rose-Marie Losier-Cool</option><option value="window.location = 'http://www.liberal.ca/senators/sandra-lovelace-nicholas'" >Sandra Lovelace Nicholas</option><option value="window.location = 'http://www.liberal.ca/senators/francis-william-mahovlich'" >Frank Mahovlich</option><option value="window.location = 'http://www.liberal.ca/senators/paul-massicotte'" >Paul Massicotte</option><option value="window.location = 'http://www.liberal.ca/senators/terry-mercer'" >Terry Mercer</option><option value="window.location = 'http://www.liberal.ca/senators/pana-merchant'" >Pana Merchant</option><option value="window.location = 'http://www.liberal.ca/senators/grant-mitchell'" >Grant Mitchell</option><option value="window.location = 'http://www.liberal.ca/senators/wilfred-moore'" >Wilfred Moore, Senator</option><option value="window.location = 'http://www.liberal.ca/senators/jim-munson'" >James Munson</option><option value="window.location = 'http://www.liberal.ca/senators/lucie-pepin'" >Lucie Pépin</option><option value="window.location = 'http://www.liberal.ca/senators/robert-peterson'" >Robert Peterson</option><option value="window.location = 'http://www.liberal.ca/senators/vivienne-poy'" >Vivienne Poy</option><option value="window.location = 'http://www.liberal.ca/senators/pierrette-ringuette'" >Pierrette Ringuette</option><option value="window.location = 'http://www.liberal.ca/senators/fernand-robichaud'" >Fernand Robichaud</option><option value="window.location = 'http://www.liberal.ca/senators/nick-sibbeston'" >Nick Sibbeston</option><option value="window.location = 'http://www.liberal.ca/senators/david-smith'" >David Smith</option><option value="window.location = 'http://www.liberal.ca/senators/claudette-tardif'" >Claudette Tardif</option><option value="window.location = 'http://www.liberal.ca/senators/charlie-watt'" >Charlie Watt</option><option value="window.location = 'http://www.liberal.ca/senators/rod-a-a-zimmer'" >Rod Zimmer</option> </select>
327
+ </fieldset>
328
+ </form>
329
+ <p class="sep">MPs by Province / Territory:</p>
330
+ <p class="by"><a href="http://www.liberal.ca/mp/bc">BC</a> · <a href="http://www.liberal.ca/mp/ab">AB</a> · <a href="http://www.liberal.ca/mp/sk">SK</a> · <a href="http://www.liberal.ca/mp/mb">MB</a> · <a href="http://www.liberal.ca/mp/on">ON</a> · <a href="http://www.liberal.ca/mp/qc">QC</a> · <a href="http://www.liberal.ca/mp/nb">NB</a> · <a href="http://www.liberal.ca/mp/ns">NS</a> · <a href="http://www.liberal.ca/mp/pe">PE</a> · <a href="http://www.liberal.ca/mp/nl">NL</a><br /><a href="http://www.liberal.ca/mp/yk">YK</a> · <a href="http://www.liberal.ca/mp/nt">NT</a> · <a href="http://www.liberal.ca/mp/nu">NU</a></p>
331
+ </div>
332
+ </div>
333
+ </div>
334
+ </li>
335
+ <li class="party lib-nav-group ngg-9">
336
+ <a href="http://www.liberal.ca/party/" class="lib-nav-item">Liberal Party</a>
337
+ <div class="lib-nav-sub ngg">
338
+ <div class="ngg-wrap">
339
+ <div class="ng ng-3">
340
+ <strong class="title myriad">LPC in your province</strong>
341
+ <ul>
342
+ <li><a href="http://www.liberalalberta.ca/" target="_blank">Alberta</a></li>
343
+ <li><a href="http://bc.liberal.ca/" target="_blank">British Columbia</a></li>
344
+ <li><a href="http://manitoba.liberal.ca/" target="_blank">Manitoba</a></li>
345
+ <li><a href="http://www.nblib.nb.ca/" target="_blank">New Brunswick</a></li>
346
+ <li><a href="http://www.nlliberals.ca/" target="_blank">Newfoundland &amp; Labrador</a></li>
347
+ <li><a href="http://www.liberal.ns.ca/" target="_blank">Nova Scotia</a></li>
348
+ <li><a href="http://www.lpco.ca/" target="_blank">Ontario</a></li>
349
+ <li><a href="http://www.liberal.pe.ca/" target="_blank">Prince Edward Island</a></li>
350
+ <li><a href="http://qc.liberal.ca/" target="_blank">Québec</a></li>
351
+ <li><a href="http://saskatchewan.liberal.ca/" target="_blank">Saskatchewan</a></li>
352
+ </ul>
353
+ </div>
354
+ <div class="ng ng-2">
355
+ <strong class="title myriad">In this section</strong>
356
+ <ul>
357
+ <li><a href="http://www.liberal.ca/party/">About LPC</a></li>
358
+ <li><a href="http://www.liberal.ca/party/history/">History</a></li>
359
+ <li><a href="http://www.liberal.ca/party/commissions/">Commissions</a></li>
360
+ <li><a href="http://www.liberal.ca/party/national-board-of-directors/">National Board</a></li>
361
+ <li><a href="http://www.liberal.ca/party/national-election-readiness-committee/">Elections Readiness</a></li>
362
+ <li><a href="http://www.liberal.ca/party/documents/">Documents</a></li>
363
+ <li><a href="http://www.liberal.ca/contact/">Contact Us</a></li>
364
+ </ul>
365
+ </div>
366
+ <div class="ng ng-4 last">
367
+ <div class="figure"><img src="http://cdn3.liberal.ca/wp-content/themes/liberal-parent/images/nav/people.jpg" width="283" height="193" alt=""></div>
368
+ <!--
369
+ <strong class="title myriad">Find your local Liberal association</strong>
370
+ <form action="#" >
371
+ <fieldset>
372
+ <label for="libAssocPostCode">Postal Code</label>
373
+ <input type="text" id="libAssocPostCode" value="Postal Code" onFocus="clearText(this)" onBlur="clearText(this)" />
374
+ <button type="submit" onClick="findRiding('libAssocPostCode')" >Find my riding</button>
375
+ </fieldset>
376
+ </form>
377
+ -->
378
+ </div>
379
+ </div>
380
+ </div>
381
+ </li>
382
+ <li class="issues lib-nav-group ngg-9">
383
+ <a href="http://www.liberal.ca/platform/" class="lib-nav-item">Platform</a>
384
+ <div class="lib-nav-sub ngg">
385
+ <div class="ngg-wrap">
386
+ <div class="ng ng-3 last">
387
+ <strong class="title myriad">Browse by theme</strong>
388
+ <ul id="menu-themes">
389
+ <li class="tog" style="margin-bottom:15px;"><div style="float:left; width:5px; background-color: #EE2E24; margin-right:5px;">&nbsp;</div><a href="http://www.liberal.ca/familypack/">Liberal Family Pack</a></li>
390
+ <li class="eco"><div style="float:left; width:5px; background-color: #A45583; margin-right:5px;">&nbsp;</div><a href="http://www.liberal.ca/platform/the-economy/">Economy: Better Choices</a></li>
391
+ <li class="fam"><div style="float:left; width:5px; background-color: #CD9F20; margin-right:5px;">&nbsp;</div><a href="http://www.liberal.ca/platform/families-finances-future/">Families, Finance, Future</a></li>
392
+ <li class="env"><div style="float:left; width:5px; background-color: #75B443; margin-right:5px;">&nbsp;</div><a href="http://www.liberal.ca/platform/clean-environment/">Clean Environment</a></li>
393
+ <li class="tog"><div style="float:left; width:5px; background-color: #EE2E24; margin-right:5px;">&nbsp;</div><a href="http://www.liberal.ca/platform/bringing-canadians-together/" >Bringing Canadians Together</a></li>
394
+ <li class="wor"><div style="float:left; width:5px; background-color: #15A1B0; margin-right:5px;">&nbsp;</div><a href="http://www.liberal.ca/platform/canada-world/" >Canada in the World</a></li>
395
+ </ul>
396
+ <br>
397
+ <div id=EchoFamilyPackLang>
398
+ <strong class="title myriad">Other Languages</strong>
399
+ <form name="jump">
400
+ <select name="menu" onChange="location=document.jump.menu.options[document.jump.menu.selectedIndex].value;" value="GO">
401
+ <option value='#'>Select a language</option>
402
+ <option value='http://issuu.com/liberalca/docs/fp_italian_v2?viewMode=presentation&mode=embed'>Italian</option>
403
+ <option value='http://issuu.com/liberalca/docs/fp_portuguese_v3?viewMode=presentation&mode=embed'>Portuguese</option>
404
+ <option value='http://issuu.com/liberalca/docs/nc_simplifiedchinese?viewMode=presentation&mode=embed'>Simplified Chinese</option>
405
+ <option value='http://issuu.com/liberalca/docs/nc_traditionalchinese?viewMode=presentation&mode=embed'>Traditional Chinese</option>
406
+ </select>
407
+ </form>
408
+ </div>
409
+ </div>
410
+ <div class="ng ng-3">
411
+ <strong class="title myriad">Read the Platform</strong>
412
+ <div class="figure">
413
+ <a href="http://www.liberal.ca/platform/"><img style="margin-left:0;" src="http://cdn2.liberal.ca/wp-content/themes/liberal-parent/images/nav/platform-e.jpg" width="167" height="216" alt=""></a>
414
+ </div>
415
+ </div>
416
+ <div class="ng ng-3">
417
+ <strong class="title myriad">Top Issues</strong>
418
+ <ul>
419
+ <li><a href="http://www.liberal.ca/platform/families-finances-future/health-and-health-care/">Health &amp; Health Care</a></li>
420
+ <li><a href="http://www.liberal.ca/platform/families-finances-future/canadian-learning-strategy/">Learning Passport &amp; Education</a></li>
421
+ <li><a href="http://www.liberal.ca/youth/">Youth</a></li>
422
+ <li><a href="http://www.liberal.ca/issues/global-leadership/">Global Leadership</a></li>
423
+ <li><a href="http://www.liberal.ca/issues/digital-policy/">Digital Policy</a></li>
424
+ <li><a href="http://www.liberal.ca/issues/rural-canada/">Rural Canada</a></li>
425
+ <li><a href="http://www.liberal.ca/issues/women/">Women</a></li>
426
+ </ul>
427
+ <div style="padding-top: 7px;" id=EchoMoreIssues>
428
+ <strong class="title myriad">More Issues</strong>
429
+ <form name="jumpa">
430
+ <select name="menua" onChange="location=document.jumpa.menua.options[document.jumpa.menua.selectedIndex].value;" value="GO">
431
+ <option value='#'>Select an Issue</option>
432
+ <option value='http://www.liberal.ca/issues/aboriginal-peoples/'>Aboriginal Peoples</option>
433
+ <option value='http://www.liberal.ca/platform/bringing-canadians-together/respecting-renewing-democracy/'>Accountability</option>
434
+ <option value='http://www.liberal.ca/platform/bringing-canadians-together/stronger-safer-communities/#affordable-housing'>Affordable Housing</option>
435
+ <option value='http://www.liberal.ca/platform/canada-world/#arctic-sovereignty'>Arctic Sovereignty</option>
436
+ <option value='http://www.liberal.ca/platform/bringing-canadians-together/more-equal-canada/'>Arts & Culture</option>
437
+ <option value='http://www.liberal.ca/platform/families-finances-future/health-and-health-care/#brain-health'>Brain Health</option>
438
+ <option value='http://www.liberal.ca/platform/clean-environment/'>Clean Resources</option>
439
+ <option value='http://www.liberal.ca/platform/clean-environment/#climate-change-action'>Climate Change Action</option>
440
+ <option value='http://www.liberal.ca/platform/the-economy/fiscal-policy/#corporate-tax-rates'>Corporate Tax Cuts</option>
441
+ <option value='http://www.liberal.ca/platform/canada-world/#defence'>Defence</option>
442
+ <option value='http://www.liberal.ca/platform/the-economy/fiscal-policy/#deficit-reduction'>Deficit Reduction</option>
443
+ <option value='http://www.liberal.ca/issues/digital-policy/'>Digital Policy</option>
444
+ <option value='http://www.liberal.ca/platform/the-economy/'>Economy</option>
445
+ <option value='http://www.liberal.ca/platform/the-economy/innovation-jobs/#entrepreneurship-productivity'>Entrepreneurship</option>
446
+ <option value='http://www.liberal.ca/platform/clean-environment/'>Environment & Energy</option>
447
+ <option value='http://www.liberal.ca/platform/bringing-canadians-together/federalism-and-public-service/'>Federalism</option>
448
+ <option value='http://www.liberal.ca/platform/canada-world/'>Global Leadership</option>
449
+ <option value='http://www.liberal.ca/platform/families-finances-future/family-care/'>Health & Family Care</option>
450
+ <option value='http://www.liberal.ca/platform/the-economy/innovation-jobs/#transportation-infrastructure'>Infrastructure</option>
451
+ <option value='http://www.liberal.ca/platform/canada-world/#international-development'>International Development</option>
452
+ <option value='http://www.liberal.ca/platform/bringing-canadians-together/stronger-safer-communities/'>Justice & Public Safety</option>
453
+ <option value='http://www.liberal.ca/platform/families-finances-future/canadian-learning-strategy/'>Learning Passport</option>
454
+ <option value='http://www.liberal.ca/issues/multiculturalism-diversity/'>Multiculturalism & Diversity</option>
455
+ <option value='http://www.liberal.ca/official-languages/'>Official Languages</option>
456
+ <option value='http://www.liberal.ca/platform/bringing-canadians-together/stronger-safer-communities/#poverty-reduction'>Poverty Reduction</option>
457
+ <option value='http://www.liberal.ca/platform/families-finances-future/health-and-health-care/#prescription-drug-coverage'>Prescription Drug Coverage</option>
458
+ <option value='http://www.liberal.ca/platform/bringing-canadians-together/federalism-and-public-service/#public-service'>Public Service</option>
459
+ <option value='http://www.liberal.ca/platform/clean-environment/#renewable-energy'>Renewable Energy</option>
460
+ <option value='http://www.liberal.ca/platform/families-finances-future/public-pension-system/'>Retirement Security</option>
461
+ <option value='http://www.liberal.ca/platform/the-economy/innovation-jobs/#science-technology-research'>Science & Technology</option>
462
+ <option value='http://www.liberal.ca/platform/the-economy/innovation-jobs/#small-business'>Small Business</option>
463
+ <option value='http://www.liberal.ca/platform/the-economy/fiscal-policy/#spending-discipline'>Spending Discipline</option>
464
+ <option value='http://www.liberal.ca/platform/the-economy/innovation-jobs/#transportation-infrastructure'>Transportation</option>
465
+ <option value='http://www.liberal.ca/issues/learning-innovation/#veterans-learning-benefit'>Veterans Learning Benefit</option>
466
+ <option value='http://www.liberal.ca/platform/bringing-canadians-together/stronger-safer-communities/#volunteerism'>Volunteerism</option>
467
+ <option value='http://www.liberal.ca/platform/clean-environment/stewardship/#water-stewardship'>Water Stewardship</option>
468
+ <option value='http://www.liberal.ca/platform/the-economy/innovation-jobs/#youth-employment'>Youth Employment</option>
469
+ </select>
470
+ </form>
471
+ </div>
472
+ </div>
473
+ </div>
474
+ </div>
475
+ </li>
476
+ <li class="newsroom lib-nav-group ngg-9">
477
+ <a href="http://www.liberal.ca/blog/" class="lib-nav-item">News &amp; Blog</a>
478
+ <div class="lib-nav-sub ngg">
479
+ <div class="ngg-wrap">
480
+ <div class="ng ng-5">
481
+ <strong class="title myriad">Latest Stories</strong>
482
+ <ul class="alt">
483
+ <li><a href="http://www.liberal.ca/newsroom/blog/throne-speech/">My take on the Throne Speech&nbsp;»</a></li><li><a href="http://www.liberal.ca/newsroom/news-release/speech-throne-missed-opportunity-lay-positive-longterm-vision-canada/">The Speech from the Throne &#8211; a missed opportunity to lay out a positive long-term vision for Canada&nbsp;»</a></li><li><a href="http://www.liberal.ca/newsroom/news-release/statement-members-24-hours-stand-delegate/">Statement to members: You have less than 24 hours to stand as a delegate&nbsp;»</a></li><li><a href="http://www.liberal.ca/newsroom/news-release/statement-election-speaker/">STATEMENT: Election of a new Speaker&nbsp;»</a></li><li><a href="http://www.liberal.ca/newsroom/news-release/introducing-liberal-team/">Introducing the Liberal Team&nbsp;»</a></li><li><a href="http://www.liberal.ca/newsroom/news-release/words-bob-rae-interim-liberal-leader/">In their own words: Bob Rae becomes Interim Liberal Leader&nbsp;»</a></li><li><a href="http://www.liberal.ca/newsroom/blog/lets-get-started/">Let’s get started!&nbsp;»</a></li> </ul>
484
+ </div>
485
+ <div class="ng ng-2">
486
+ <strong class="title myriad">In this section</strong>
487
+ <ul>
488
+ <li><a href="http://www.liberal.ca/blog/">Blog</a></li>
489
+ <li><a href="http://www.liberal.ca/newsroom/">Newsroom</a></li>
490
+ <li><a href="http://www.liberal.ca/newsroom/news-release/">Media releases</a></li>
491
+ <li><a href="http://www.liberal.ca/newsroom/speeches/">Speeches</a></li>
492
+ <li><a href="http://www.liberal.ca/newsroom/photos-and-video/">Photos &amp; Video</a></li>
493
+ <li><a href="http://www.liberal.ca/newsroom/just-the-facts/">Just the Facts</a></li>
494
+ <li><a href="http://www.liberal.ca/newsroom/party-news/">Party News</a></li>
495
+ <li><a href="http://www.liberal.ca/newsroom/official-graphics/">Official Graphics</a></li>
496
+ </ul>
497
+ </div>
498
+ <div class="ng ng-2 last">
499
+ <strong class="title myriad">Read the blog</strong>
500
+ <div class="figure"><a href="http://www.liberal.ca/blog/"><img src="http://cdn2.liberal.ca/wp-content/themes/election/images/nav/campaign.jpg" width="131" height="100" alt=""></a></div>
501
+ <em><a href="http://www.liberal.ca/blog/">And get the latest happenings from the campaign trail</a></em>
502
+ </div>
503
+ </div>
504
+ </div>
505
+ </li>
506
+ <li class="involved lib-nav-group ngg-9">
507
+ <a href="http://www.liberal.ca/get-involved/" class="lib-nav-item">Get Involved</a>
508
+ <div class="lib-nav-sub ngg">
509
+ <div class="ngg-wrap">
510
+ <div class="ng ng-2">
511
+ <div class="figure"><a href="https://action.liberal.ca/en/volunteer"><img src="http://cdn.liberal.ca/wp-content/themes/liberal-parent/images/nav/join.jpg" width="131" height="87" alt="" /></a></div>
512
+ <strong class="title myriad"><a href="https://action.liberal.ca/en/volunteer">Volunteer</a></strong>
513
+ <a href="https://action.liberal.ca/en/volunteer"><em>Make a positive contribution to your community and country</em></a>
514
+ </div>
515
+ <div class="ng ng-2">
516
+ <strong class="title myriad">In this section</strong>
517
+ <ul>
518
+ <li><a href="https://action.liberal.ca/en/membership">Join the Party</a></li>
519
+ <li><a href="http://events.liberal.ca/Event-List.aspx?Lang=en">Upcoming events</a></li>
520
+ <li><a href="https://action.liberal.ca/en/volunteer">Volunteer</a></li>
521
+ <li><a href="https://action.liberal.ca/en/donate/?utm_source=donHeaderMenu">Make a donation</a></li>
522
+ <li><a href="http://www.liberal.ca/get-involved/connect-on-social-media/">Connect on Social Media</a></li>
523
+ </ul>
524
+ </div>
525
+ <div class="ng ng-5 last">
526
+ <strong class="title myriad">Every dollar counts</strong>
527
+ <dl class="callout-group liberal-ca-menu-get-involved">
528
+ <dt class="icon"><a class="donate" href="https://action.liberal.ca/en/donate"></a></dt>
529
+ <dd class="desc"><a href="https://action.liberal.ca/en/donate">A donation, however small, makes a big difference&nbsp;»</a></dd>
530
+ <dt class="icon"><a class="victoryen" onclick="_utmSetVar('VictoryFundMenuImage')" href="https://action.liberal.ca/en/VictoryFund"></a></dt>
531
+ <dd class="desc"><a onclick="_utmSetVar('VictoryFundMenuText')" href="https://action.liberal.ca/en/VictoryFund">Join the Victory Fund: affordable monthly giving for a long-term impact&nbsp;»</a></dd>
532
+ <dt class="icon"><a class="laurier" onclick="_utmSetVar('LaurierClubMenuImage')" href="https://action.liberal.ca/en/laurier"></a></dt>
533
+ <dd class="desc"><a onclick="_utmSetVar('LaurierClubMenuImage')" href="https://action.liberal.ca/en/laurier">With an annual gift of $1,100 to the Liberal Party, you can achieve Laurier Club status, with benefits to match your generosity&nbsp;»</a></dd>
534
+ </dl>
535
+ </div>
536
+ <div class="ng ng-9 last ng-footer">
537
+ <form method="post" onSubmit="SendEmailMenu(this);return false;">
538
+ <fieldset>
539
+ <strong class="title myriad">Email Updates</strong>
540
+ <label for="FirstName">First Name</label>
541
+ <input type="text" name="FirstName" id="FirstName" class="name" onfocus="clearText(this)" onblur="clearText(this)" value="First Name" />
542
+ <label for="LastName">Last Name</label>
543
+ <input type="text" name="LastName" id="LastName" class="name" onfocus="clearText(this)" onblur="clearText(this)" value="Last Name" />
544
+ <label for="Email">Email</label>
545
+ <input type="text" name="Email" id="Email" class="email" onfocus="clearText(this)" onblur="clearText(this)" value="Email" />
546
+ <label for="PostalCode">Postal Code</label>
547
+ <input type="text" id="PostalCode" name="PostalCode" onfocus="clearText(this)" onblur="clearText(this)" value="Postal Code" />
548
+ <input type="hidden" name="Location" id="Location" value="Menu-">
549
+ <input type="hidden" name="action" id="action" value="AjaxSubscribeToList">
550
+ <div class="btn-grp"><button type="submit">Sign Up</button></div>
551
+ </fieldset>
552
+ </form>
553
+ </div>
554
+ </div>
555
+ </div>
556
+ </li>
557
+ </ul>
558
+ </div>
559
+ <div id="lib-header-right">
560
+ <div id="lib-header-links">
561
+ <a href="http://www.liberal.ca/contact/">Contact</a> | <a href="http://www.liberal.ca/?s=%20&amp;submit=Search" class="SearchHeader">Search</a> | <a href="http://www.liberal.ca/newsroom/photos-and-video/" class="photosHeader">Videos</a> | <a id="langSwitch" href="http://www.liberal.ca/fr/">Français</a>
562
+ <div class="lib-header-welcome">&nbsp; </div>
563
+ </div>
564
+ <div class="tooltipUser" style="padding-top:35px"><div id="changePWmodal" class="input-login-submit" style="float:left;display:inline;width:165px;">
565
+ <input type="button" onclick="window.location = 'http://www.liberal.ca/wp-login.php?action=logout&amp;redirect_to=http%3A%2F%2Fwww.liberal.ca%2Friding%2Fpostal%2FH0H0H0%2F&amp;_wpnonce=702e4c1ef8'" name="Logout" id="Logout" class="button" value="Logout">
566
+ </div></div>
567
+ <div class="tooltipSearch"> <div class="searchdesc">Search Liberal.ca</div>
568
+ <form action="http://www.liberal.ca" method="get">
569
+ <input type="text" id="SearchHeaderTxt" name="s" maxlength="60" value="" onfocus="clearText(this)" onblur="clearText(this)"><input type="submit" name="submit" value="Search" >
570
+ </form>
571
+ </div>
572
+ <a class="donate_now" style="background-image:url('http://cdn.liberal.ca/wp-content/themes/liberal-parent/images/donate_now_en.png')" href="http://www.liberal.ca/donate/">Donate now</a>
573
+ </div>
574
+ </div>
575
+ </div>
576
+ <div id="masthead" class="alt" style="height:225px; background:#ffffff url(http://www.liberal.ca/wp-content/themes/liberal-parent/images/mastheads/candidate-list.jpg) center top;">
577
+ <h1 style="background:none;"><span style="color:#FFFFFF; font-size:36px; font-weight:400; letter-spacing:-1px; line-height:1.2em; margin:0 0 0 -18px; min-width:10em; opacity:1; padding:0.6em 14px 10px 15px; position:absolute; width:625px; background:none; top:28px;">Ridings</span></h1>
578
+ </div>
579
+ <div class="wrapper">
580
+ <div class="grid">
581
+ <div class="grid-group g-has-sidebar">
582
+ <div class="grid-item grid-8">
583
+ Oopsies! let's try that again. Was your postal code entered in the following format: H0H 0H0 ? </div>
584
+ <div class="grid-item grid-4 g-sidebar">
585
+ <div id="sharesidebar-44" class="widget sharesidebar"> <div class="sharethispage">
586
+ <span style="float:left;margin-right:3px">
587
+ <fb:share-button type="box_count"></fb:share-button>
588
+ </span>
589
+ <span style="float:left;margin-right:3px">
590
+ <a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-via="M_Ignatieff" data-related="liberal_party">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
591
+ </span>
592
+ <span style="float:left;margin-right:3px">
593
+ <script type="text/javascript" src="http://www.reddit.com/static/button/button2.js"></script>
594
+ </span>
595
+ <span style="float:left;margin-right:3px">
596
+ <img alt="Email this to a friend" title="Email this to a friend" style="margin-left:5px; cursor: pointer;" onclick="emailShareScrollTo()" src="http://cdn2.liberal.ca/wp-content/themes/Liberal.ca/images/email-video.png" />
597
+ </span>
598
+ <br /><br /><br /><br />
599
+ <fb:like width="306" action="recommend" showfaces="0" colorscheme="light"></fb:like>
600
+ </div>
601
+ </div><div id="makeadifference-3" class="widget makeadifference"><h2 class="widget_title">Make a Difference</h2> <div class="getinvolved">
602
+ <ul>
603
+ <li class="donate"><a href="http://www.liberal.ca/donate/"><h3>Donate</h3><p>Learn what $20 can do</p></a></li><li class="volunteer"><a href="https://action.liberal.ca/en/volunteer/Riding/"><h3>Volunteer</h3><p>In your community</p></a></li><li class="join-the-party"><a href="https://action.liberal.ca/en/membership"><h3>Join the Party</h3><p>Help shape the country</p></a></li><li class="victoryfund"><a href="https://action.liberal.ca/en/VictoryFund/Riding/"><h3>Victory Fund</h3><p>Give monthly</p></a></li> </div>
604
+ </ul>
605
+ </div><div id="liberal-events-5" class="widget liberal-events"> <script type="text/javascript">
606
+ $j(document).ready(function () {GetEvents('city',false,0,3);});
607
+ </script>
608
+ <div class="upcoming_events">
609
+ <div class="event-head">
610
+ <h2 ><a href="http://events.liberal.ca">Upcoming Events</a></h2>
611
+ <div class="currentLocation">Near <a href="http://events.liberal.ca"><span class="help"><em>Toronto</em></em>&nbsp;(change)</span></a></div>
612
+ </div>
613
+ <ul class="tools">
614
+ <li class="event-sort-city active"><a href="http://events.liberal.ca" onclick="GetEvents('city',false,0,3);return false;">Proximity</a></li>
615
+ <li class="event-sort-all"><a href="http://events.liberal.ca" onclick="GetEvents('all',false,0,3);return false;">Date</a></li>
616
+ <!--<li class="more"><a target="_blank" href="http://events.liberal.ca/Event-List.aspx?lang=en>">More »</a></li>-->
617
+ </ul>
618
+ <div class="tooltip"><span id="ProbableLocation">We have detected this as your most probable location.</span><br><br> To get better results Enter your postal code here <input type="text" id="eventPostal" name="eventPostal" maxlength="7" > <input type="button" value="Go" onclick="GetEvents('postal',$j('#eventPostal').val(),0,3);$j('.help').data('tooltip').hide();$j('.help').html($j('#eventPostal').val());$j('#ProbableLocation').hide();">
619
+ </div>
620
+ <ul class="event-list">
621
+ <li><div class="date"><a href="http://events.liberal.ca/Event/volunteers-bbq.aspx?Lang=en"><span>JUN</span><b> 4</b></a></div><p><a href="http://events.liberal.ca/Event/volunteers-bbq.aspx?Lang=en">Volunteer's BBQ</a></p></li><li><div class="date"><a href="http://events.liberal.ca/Event/letter-to-the-editor-writing-workshop.aspx?Lang=en"><span>JUN</span><b>12</b></a></div><p><a href="http://events.liberal.ca/Event/letter-to-the-editor-writing-workshop.aspx?Lang=en">Letter to the Editor Writing Workshop</a></p></li><li><div class="date"><a href="http://events.liberal.ca/Event/lkm-volunteer-appreciation-barbeque.aspx?Lang=en"><span>JUN</span><b>11</b></a></div><p><a href="http://events.liberal.ca/Event/lkm-volunteer-appreciation-barbeque.aspx?Lang=en">LKM Volunteer Appreciation Barbeque</a></p></li> </ul>
622
+ </div>
623
+ </div> </div>
624
+ </div>
625
+ </div>
626
+ </div>
627
+ <div id="lib-footer-wrapper">
628
+ <div id="lib-footer">
629
+ <div id="copyright">&copy; 2011 Authorized by The Federal Liberal Agency of Canada, registered agent for the Liberal Party of Canada.</div>
630
+ <div id="copyright-logo"><a href="http://www.liberal.ca"><img src="http://cdn3.liberal.ca/wp-content/themes/liberal-parent/images/logo.png" alt="Liberal Party of Canada"/></a></div>
631
+ </div>
632
+ </div>
633
+ <!--[if lte IE 8]>
634
+ <script type="text/javascript">
635
+ $j('.ngg select').click(function(){ $j('.lib-nav-group').hoverIntent(function(){}, function(){}); });
636
+ $j('.ngg select').focus(function(){ $j('.lib-nav-group').hoverIntent(function(){}, function(){}); });
637
+ $j('.ngg select').mouseenter(function(){ $j('.lib-nav-group').hoverIntent(function(){}, function(){}); });
638
+ $j('.ngg select').change(function(){ setTimeout(function(){$j('.lib-nav-group').hoverIntent(MegaDropDowns.config);}, 10); });
639
+ $j('.ngg select').blur(function(){ $j('.lib-nav-group').hoverIntent(MegaDropDowns.config); });
640
+ </script>
641
+ <![endif]-->
642
+ <style type="text/css">body { padding-top: 0 !important; } #wp-admin-bar { display: none; }</style>
643
+ <!-- Generated in 1.215 seconds. -->
644
+ <script>
645
+ window.fbAsyncInit = function() {
646
+ FB.init({appId: '142749005737325', status: true, cookie: true,
647
+ xfbml: true});
648
+ FB.Event.subscribe('auth.sessionChange', function(response) {
649
+ if (response.session) {
650
+ liberal_facebooklogin_callback(response);//onlogin
651
+ } else {
652
+ window.location.reload();//onlogout, reload
653
+ }
654
+ });
655
+ };
656
+ (function() {
657
+ var e = document.createElement('script'); e.async = true;
658
+ e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
659
+ document.getElementById('fb-root').appendChild(e);
660
+ }());
661
+ </script>
662
+ </body>
663
+ </html>