$(document).ready(function() {


		$("h1.subline span").each(function(i) {
			$(this).parents("h1").css("background-position", $(this).width() + "px 50%");
		});
		
		$(function() {
			$("a.btnmore").button();
		});

});

function teaserOpener(url, target) {
  if (target == '') {
    window.location.href = url
  } else {
    window.open(url);    
  }
}