 $(document).ready(function(){
  $(".teasers > *").hover(
  function () {
	var img = $(this).attr('bg');
	img = img.replace(".","Hvid.");
	$(this).css("background-image", "url("+img+")"); 
	$(this).find('div').show();
	
  }, 
  function () {
     var img = $(this).attr('bg');
	img = img.replace("Hvid.",".");
	$(this).css("background-image", "url("+img+")"); 
	$(this).find('div').hide();
  }

  );
  
 });

