jQuery(document).ready(function() {
          /*
          jQuery('#date-carousel').jcarousel({
                  // Configuration goes here
          });
          */

  // styla ingressen
  jQuery(".format_text p:first:empty").hide();
  jQuery(".format_text > p:first").addClass("ingress");
  //jQuery(".wp-caption + p").addClass("ingress");

  // Textfält
  jQuery('.textwidget input[type="text"]').each(function() {
          jQuery(this).data('value', jQuery(this).val());
          jQuery(this).focus(function() {
                  if (jQuery(this).val() == jQuery(this).data('value')) {
                      jQuery(this).val('');
                  }
              })
          .blur(function() {
                  if (jQuery(this).val() == '') {
                      jQuery(this).val(jQuery(this).data('value'));
                  }
              });
      });

  // twitterWidget.render().setUser('Seglorasmedja').start();

});

