$(document).ready(function(){
  // Custom captions
  $(".wp-caption").each(function(){
    var captionWidth = $(this).width();
    var captionID = $(this).attr("id");
    $("#"+captionID+" p").css("width", captionWidth-50);
  });
  
  // Sidebar tabs
  $(".widget-tab-content:not(.current)").hide();
  $(".widget-tab-title").click(function(){
    // Change class
    $("#"+$(this).attr("href")+" .widget-tab-title").removeClass("current");
    $(this).addClass("current");
    // Show/hide
    $("#"+$(this).attr("href")+" .widget-tab-content").hide();
    $("#"+$(this).attr("rel")).show();
    return false;
  });
  
  // Highlight last post in sidebar
  $("#recent-posts li:eq(0)").addClass("new").append('<img src="http://www.movemoretoday.com/wp-content/themes/movemoretoday/images/bg-side-new.png" />');
  
  // Newsletter slidebox
  $("#fiinewsletter form").hide();
  $("#fiinewsletter h3").click(function(){
    $("#fiinewsletter form").slideToggle("fast");
    $("#fiinewsletter [name=name]").focus();
  });
});
