diff --git video_embed_field.info video_embed_field.info
index 727faf4498e9454b9c57f664928531cca7b354ce..4484a141b93d40f8e74e18ed03d2498ed586d354 100644
--- video_embed_field.info
+++ video_embed_field.info
@@ -5,10 +5,4 @@ package = Media
 configure = admin/config/media/vef_video_styles
 
 dependencies[] = ctools
-dependencies[] = image
-; Information added by drupal.org packaging script on 2011-11-07
-version = "7.x-2.x-dev"
-core = "7.x"
-project = "video_embed_field"
-datestamp = "1320625938"
-
+dependencies[] = image
\ No newline at end of file
diff --git video_embed_field.module video_embed_field.module
index 133b834e5cf55036430b2c9f81d833b88169ebd2..8b4c1ef6a0ea35861c060b61563c4d16d716fb44 100755
--- video_embed_field.module
+++ video_embed_field.module
@@ -17,6 +17,7 @@ module_load_include('inc', 'video_embed_field', 'video_embed_field.field');
 module_load_include('inc', 'video_embed_field', 'video_embed_field.admin');
 // Load our default handlers
 module_load_include('inc', 'video_embed_field', 'video_embed_field.handlers');
+
 /**
  * Implementation of hook_ctools_plugin_directory().
  */
@@ -69,6 +70,22 @@ function video_embed_field_default_video_embed_styles() {
   return array($normal, $teaser);
 }
 
+/**
+ * Implements hook_menu().
+ */
+function video_embed_field_menu() {
+  $items = array();
+  
+  $items['vef/load/%/%'] = array(
+    'title' => 'Video Embed Field - Load Video',
+    'page callback' => '_video_embed_field_load_video',
+    'page arguments' => array(2,3),
+    'access arguments' => TRUE, 
+    'type' => MENU_CALLBACK,
+  );
+  
+  return $items;
+}
 
 /**
  * Get an array of all styles and their settings.
@@ -346,19 +363,19 @@ function theme_video_embed_field_embed_code($variables) {
  */
 function theme_video_embed_field_colorbox_code($variables) {
   $style = video_embed_field_video_style_load($variables['video_style']);
-
+  
   // If there was an issue load in the default style
   if ($style == FALSE) {
     $style = video_embed_field_video_style_load('normal');
   }
-
+  
   $handler = video_embed_get_handler($variables['video_url']);
-
+  
   $data = $style->data[$handler['name']];
-
+  
   //Create a unique ID for colorbox inline
   $id = 'video-embed-field-' . uniqid('video_embed_field');
-
+  
   if($variables['image_style'] == 'none'){
     $image = array(
       array(
@@ -386,10 +403,12 @@ function theme_video_embed_field_colorbox_code($variables) {
   $image = drupal_render($image);
   $video = drupal_render($video);
   
-  $output = l($image . $video, "?width=" . ($data['width']+5) . "&height=" . ($data['height']+20) . "&inline=true#" . $id , array('html' => true, 'external' => true, 'attributes' => array('class' => array('colorbox-load', 'colorbox-inline'))));  
-
+  //$output = l($image . $video, "?width=" . ($data['width']+5) . "&height=" . ($data['height']+20) . "&inline=true#" . $id , array('html' => true, 'external' => true, 'attributes' => array('class' => array('colorbox-load', 'colorbox-inline'))));  
+  $output = l($image, base_path() . 'vef/load/' . $variables['video_style'] . '/' . urlencode($variables['video_url']) , array('html' => true, 'external' => true, 'attributes' => array('class' => array('colorbox-load', 'colorbox-inline'))));  
+  
   return $output;
 }
+
 /**
  *  Get the thumbnail url for a given video url
  *  @param $url - the url of the video
@@ -440,3 +459,27 @@ function _video_embed_code_get_settings_str($settings = array()) {
 function _video_embed_field_array_filter($item) {
   return (isset($item['type']) && $item['type'] == 'video_embed_field');
 }
+
+/**
+ * Loads a video to returning via AJAX
+ */
+function _video_embed_field_load_video($style, $url) {
+  $url = urldecode($url);
+  
+  /*
+  $style = video_embed_field_video_style_load($variables['video_style']);
+  
+  // If there was an issue load in the default style
+  if ($style == FALSE) {
+    $style = video_embed_field_video_style_load('normal');
+  }
+  */
+  
+  $video = array(
+    '#theme' => 'video_embed_field_embed_code',
+    '#style' => $style,
+    '#url' => $url,
+  );
+  
+  print drupal_render($video);
+}
\ No newline at end of file
