
$(document).ready(function() {

  var headline = $("#content").children("h2").text();

  $("<span class=\"headlineshadow\">" + headline + "</span>").insertAfter($("#content").children("h2"));
  $(".headlineshadow").width($("#content").width() - parseInt($(".headlineshadow").css('left')) + parseInt($("#content").css('padding-right')));

  $(window).resize(function() {
    $(".headlineshadow").width($("#content").width() - parseInt($(".headlineshadow").css('left')) + parseInt($("#content").css('padding-right')));
  });
});


