diff --git smackdown.module smackdown.module
index c79ff5d..5ebb014 100644
--- smackdown.module
+++ smackdown.module
@@ -10,6 +10,15 @@
  */
 
 /**
+ * Implementation of hook_init().
+ */
+function smackdown_init() {
+  if ($_GET['smackdown_vote']) {
+    context_set_by_condition('smackdown', TRUE);
+  }
+}
+
+/**
  * Implementation of hook_perm().
  */
 function smackdown_perm() {
@@ -208,6 +217,23 @@ function smackdown_get_nodereference_fields($content_type) {
 }
 
 /**
+ * Implementation of hook_context_conditions().
+ */
+function smackdown_context_conditions() {
+  return array(
+    'smackdown' => array(
+      '#title' => t('Just Voted on a Smackdown'),
+      '#description' => t('Set this context when a user has just voted on a smackdown on the previous page'),
+      '#options' => array(
+        0 => t('Off'),
+        1 => t('On'),
+      ),
+      '#type' => 'radios',
+    ),
+  );
+}
+
+/**
  * Implementation of hook_theme().
  */
 function smackdown_theme() {
