// Find the mogulus video box and format 
$(document).ready(function() {
  $("div[@id^='mogulus_']")
    .addClass('mogulus_video')
    .prepend('<div id="show_schedule"></div>');
  $('#show_schedule').html( $('#schedule_holder').html() );
});

// Add the fancybox image popup
$(document).ready(function() {
  $('.post a').fancybox({
    'path' : '/fancybox/'
  });
});

// Remove top margin from first post paragraph tags
$(document).ready(function() {
  $('#content .post > p:first').css('margin-top', '0');
});

// Add white slashes to the end of the sidebar h3's
$(document).ready(function() {
  $('.sideblock h3').append('<span style="font-weight: bold; color: #fff">//</span>');
});

// Make enews signup form ajaxy
$(document).ready(function() { 
  var options = {
    resetForm: true,
    success  : function() { $('#enews_signup_message').html('Success! You\'re on the list now.'); }
  }
  $('#enews_signup_form').ajaxForm(options); 
}); 
