<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <meta name="description" content="Never ending story - ett annorlunda livsarkiv, i samarbete med Fluffbabes">
 <meta name="keywords" content="Never ending story,NES,Sveriges Begravningsbyråers Förbund,SBF,Angelbox,Angeldust,Fluffbabes,likkista,likkistor,begravning,begravningskista,glamour,champagne,lyx,glitter,blingbling,">
 <link rel="stylesheet" type="text/css" href="/includes/style.css?2,888709E+07">
 <link rel="shortcut icon" href="favicon.ico">
 <script type="text/JavaScript" src="/includes/gkutil.js"></script>
 <script type="text/JavaScript" src="/includes/mouseover.js"></script>





<SCRIPT type="text/javascript">var gksortImgDir = '/includes/';</SCRIPT>

<STYLE type="text/css">
table.sortable                { behavior:url('/includes/gksort4.htc'); }
span.editable, div.editable   { behavior:url('/includes/gkedit.htc'); }
</STYLE>

<SCRIPT type="text/javascript">




// insertAdjacentHTML simply isn't a supported function. Add this to your script: 
//
// insertAdjacentHTML(), insertAdjacentText() and insertAdjacentElement() 
// for Netscape 6/Mozilla by Thor Larholm me@jscript.dk 
// Usage: include this code segment at the beginning of your document 
// before any other Javascript contents. 

if(typeof HTMLElement!="undefined" && ! HTMLElement.prototype.insertAdjacentElement){ 

  HTMLElement.prototype.insertAdjacentElement = function (where,parsedNode) { 
    switch (where){ 
      case 'beforeBegin': 
        this.parentNode.insertBefore(parsedNode,this) 
        break; 
      case 'afterBegin': 
        this.insertBefore(parsedNode,this.firstChild); 
        break; 
      case 'beforeEnd': 
        this.appendChild(parsedNode); 
        break; 
      case 'afterEnd': 
        if (this.nextSibling) 
        this.parentNode.insertBefore(parsedNode,this.nextSibling); 
      else this.parentNode.appendChild(parsedNode); 
        break; 
    } 
  } 
  
  HTMLElement.prototype.insertAdjacentHTML = function (where,htmlStr) { 
    var r = this.ownerDocument.createRange();
    r.setStartBefore(this);
    var parsedHTML = r.createContextualFragment(htmlStr);
    this.insertAdjacentElement(where,parsedHTML)
  } 
  
  
  HTMLElement.prototype.insertAdjacentText = function (where,txtStr) { 
    var parsedText = document.createTextNode(txtStr) 
    this.insertAdjacentElement(where,parsedText) 
    } 


}

//  http://www.faqts.com/knowledge_base/view.phtml/aid/5756





function script_onload() {
  var msg = '';
  var ds = document.scripts;
  if (ds != null) {
    msg = 'script (type src)';
    for (var i=0; i<ds.length; i++) {
      msg = msg + '\n[' + (i + 0) + ']';
      if (ds[i].type)             msg = msg + '  type=' + ds[i].type
      if (ds[i].src)              msg = msg + '  href=' + ds[i].src
    }
    msg = msg + '\n'
    msg = msg + '\n'
  } else {
    msg = msg + 'no .scripts\n\n'
  }
  ds = document.styleSheets;
  if (ds != null) {
    msg = msg + 'styleSheet (type title href parentStyleSheet.href)';
    for (var i=0; i<ds.length; i++) {
      msg = msg + '\n[' + (i + 0) + ']'
      if (ds[i].type)             msg = msg + '  type=' + ds[i].type
      if (ds[i].title)            msg = msg + '  title=' + ds[i].title;
      if (ds[i].href)             msg = msg + '  href=' + ds[i].href
      if (ds[i].parentStyleSheet) msg = msg + '  parentStyleSheet.href=' + ds[i].parentStyleSheet.href;
    }
    msg = msg + '\n'
    msg = msg + '\n'
  } else {
    msg = msg + 'no .styleSheets\n\n'
  }
  
  msg = msg + 'gksortImgDir = \'' + gksortImgDir + '\'';

/*  

To insert text before an element:
  element.parentNode.insertBefore(document.createTextNode(text), element);

To insert text as the first child of an element:
  element.insertBefore(document.createTextNode(text), element.firstChild);

To insert text as the last child of an element:
  element.appendChild(document.createTextNode(text));

To insert text after an element:
  element.parentNode.insertBefore(document.createTextNode(text), element.nextSibling);



*/  

//  dbgMsg(1, 'test1');
//  dbgMsg(1, 'test2');
//  dbgMsg(1, msg);
  dbgMsg(1, msg);
  dbgMsg(1, "---------------------------");

//  document.body.onscroll = lockMenu;
//  window.onscroll = lockMenu;

  
  if (script_oldonload)
    script_oldonload();

}

function dbgMsg(level, msg) {
  if (debugLevel >= level) {
    if (dbgWin == null) {
      var dbgdiv = document.getElementById('scriptDebug');
      if (dbgdiv != null) {
        var msg2 = msg + '\n';
        if (typeof HTMLElement != "undefined"){           /* firefox */
          var parsedText = document.createTextNode(msg2) 
          dbgdiv.appendChild(parsedText); 
        } else {                                          /* IE */
          dbgdiv.insertAdjacentText('beforeEnd', msg2);
        }
      }
    } else {

      var dbgdiv = dbgWin.document.getElementById('scriptDebug');
      if (dbgdiv != null) {
        var dbgbody = dbgWin.document.body;
        var msg2 = msg + '\n';
/*
        msg2 = msg2 + 'dbgbody.scrollTop = ' + dbgbody.scrollTop + '\n';
        msg2 = msg2 + 'dbgbody.scrollHeight = ' + dbgbody.scrollHeight + '\n';
        msg2 = msg2 + 'dbgbody.clientHeight = ' + dbgbody.clientHeight + '\n';
*/
        if (typeof HTMLElement != "undefined"){           /* firefox */
          var parsedText = document.createTextNode(msg2) 
          dbgdiv.appendChild(parsedText); 
        } else {                                          /* IE */
          dbgdiv.insertAdjacentText('beforeEnd', msg2);
        }

        dbgbody.scrollTop = dbgbody.scrollHeight - dbgbody.clientHeight - 0
      }

    }
  }
}


function lockMenu() {
/*  
  if (document.documentElement && !document.documentElement.scrollTop)
// IE6 +4.01 but no scrolling going on
else if (document.documentElement && document.documentElement.scrollTop)
// IE6 +4.01 and user has scrolled
else if (document.body && document.body.scrollTop)
// IE5 or DTD 3.2
*/
  menu = document.getElementById('shopTotIf');
  menu.style.left = '120px'; //document.body.scrollLeft + document.body.clientWidth - 35;
  menu.style.top = document.body.scrollTop;
  
  
  window.status = 'setting scrollTop = ' + document.documentElement.scrollTop + 'px';
//  alert('scroll');
}

var dbgWin = null;
// var dbgWin = open("/includes/script-debug.asp", "dbgWinId", "toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=yes, resizable=yes, width=650, height=600, top=50, left=50")

var debugLevel = 1;

var script_oldonload = window.onload;
window.onload = script_onload;

</SCRIPT>


<!--[if lte IE 6]>
 
<script type="text/javascript" src="/includes/supersleight-min.js"></script>
 
<![endif]--><!--x#xINCLUDE FILE = "includes/adovbs.inc"-->

<!-- include file="../menu01.asp" -->

  <style type="text/css">
  body {background-attachment: fixed;}
  </style>

  <style type="text/css">
  #shopTotIfX  {
    position:absolute;
    width:200px;
    height:40px;
    top:70px;
    left:10px;
    border:1px solid black;
    }
  </style>




<script type="text/javascript">
var autoUpdateCart = true;
var strNoRows = 'empty :-(';
var strOneRow = '';
var strMultiRows = '';
</script>

<script type="text/javascript" src="/includes/numfmt.js"></script> 
<script type="text/JavaScript" language="JavaScript" src="/includes/shoppingCart.js"></script>



<title>Never ending story - A Life Testimony with a difference</title>

</head>
<body marginheight="10">

	          <a href="/press.asp">
	          	<img src="/bilder/se.png" width="44" height="39" title="SVENSKA" alt="SWEDISH LANGUAGE" border="0">
	          </a>
					

<table class="main" border="0" align="center" valign="top" cellpadding="0" cellspacin="0" margin="0" width="830">
  <tr class="trtop">     
    <td height="200" align="right" style="padding-top:20px;padding-right:40px;">
<br>&nbsp;  	



    </td>
  </tr>  
      
  <tr>     
    <td class="menuband" valign="top">

	

<table class="menu1" border="0" xwidth="750">
  <tr>     
    <td  class="menu2">
   	
<a href="/en/default.asp" title="Home">Home</a> 	


<a href="/en/neverendingstory.asp" title="What is Never ending story?">What is Never ending story?</a> 	


<a href="/en/fluff/details/ANGEL001.asp" title="Order">Order</a>
<a href="/en/purchasing.asp" title="Purchasing info">Purchasing info</a> 	


<a href="/en/angelbox.asp" title="Angelbox">Angelbox</a> 	

<a href="/en/angeldust.asp" title="Angeldust">Angeldust</a> 	



<a href="/en/neverendingstories.asp" title="Never ending stories">Never ending stories</a> 	

<a href="/en/press.asp" title="Media Coverage">Media Coverage</a> 

<a href="/en/contact.asp" title="Contact">Contact</a> 	
 	
    </td>


  </tr>  
</table>

 
<br>
    </td>
  </tr>  
 

  <tr class="trmiddle">     
    <td class="maintext" valign="top">	




<div id="mainDIV">

  
  <form name="frmCatalog" method="post" action="/shoppingSum.asp" target="sumFrame">
  


<!-- START web SIDAN -->



<table border="0" align="center" valign="top" width="780" class="bgwhite">
  <col width="160">
  <col width="410">
  <col width="210">
  <tr>     

    <td class="left" valign="top">

<ul class="submenu">
	<li><span class="black"><a href="/en/pressphotos/default.asp" title="Press photos">Press photos</a></span>
<br><br>
	<li><span class="black"><a href="/en/media.asp" title="In the media ">In the media </a></span>
<br><br>

</ul>
    </td>
    
    <td class="center" valign="top">
<h1>
Media Coverage
</h1> 	

<p>
Press releases, Feb 01, 2010
</p>

<h1>
In charge of your own funeral?
</h1>
<h2>
- New Life Testimony called ”Never ending story”, new coffins called ”Angelboxes” and new burial urns called ”Angeldust” bring light to the darkness
</h2>

<p>
<i>A contemporary trend is that of individualised funeral ceremonies in which the proceedings have a more personal stamp so as to reflect the personality of the deceased. This trend of Individualism goes hand in hand with the development of society as we know it and it is logical that the trend be mirrored in the funeral trade.
</i>
</p>
<p>
The Fluffbabes lifestyle company has come up with a new alternative to existing Testimonies of Life. If you think the Final Farewell deserves a more “positive” and personal framework, then this is a worthwhile option for you; the document will tell your relatives exactly what your wishes are. It is a project that goes by the name of Never ending story and is contained in a document available at www.neverendingstory.nu. Here you will also find an alternatively designed coffin with a new name – Angelbox - which went into production at the Rydéns coffin factory in Sweden at the end of 2009. Another feature of the project is a burial urn by the name of Angeldust. 
</p>
<p>
The attitude of the Church continues to play a major role even though everyone has the right to choose other alternatives if they prefer to do so. In the case of wedding ceremonies there is an increasing acceptance of “different” proceedings, more so than in the case of funerals, in which traditional thinking still prevails. However, traditional attitudes within the Swedish church are being challenged by new cultures and changing attitudes.   
</p>


<p>
<b>What is Never ending story? </b>
</p>
<p>
Never ending story is a new alternative for those who feel that funerals deserve a more light-hearted, more personal framework. A central idea is that individuals should think long and hard about their own funeral while they are still in a position to do so – and then write them down in the document provided. An example might be that the ceremony be conceived as a final party (it might even be seen as the “first”, given that the deceased is taking the first step in an unknown direction.) Bereaved relatives tell a wide range of stories about their experiences; there are the unfortunate examples such as their not being able to hear the music they want, not being able to secure the locality of their choice, or there not being enough time at the proceedings. There are also the positive examples; a ceremony being held on a cliff overlooking the sea, for example, or in the garden of the deceased – even at a nightclub. This is very much in the spirit of  ”Never ending story” – to provide options, and propose new alternatives. 
</p>
<p>
<b>What is an Angelbox? </b>
</p>
<p>
An Angelbox is something quite new. It is indeed a coffin, but one with character and personality. With wings instead of handles and a pair of wings on the lid. There is a colour option: silver or gold. The Rydéns coffin factory has, in partnership with Fluffbabes, begun to manufacture these new coffins which are available at all affiliated funeral parlours of the Swedish Funeral Directors Association (SBF).  
</p>
<p>
<b>What is Angeldust? </b>
</p>
<p>
We are proud to present Angeldust – an elegant urn complete with angel embellishment. Angeldust is made of clay and comes in a variety of three colours: cherry, black and white. Embellishments are hand-painted. The urn is bio-degradable and manufactured at Rydéns. 
</p>
<p>
We are proud to present Angeldust – an elegant urn complete with angel embellishment. Angeldust is made of clay and comes in a variety of three colours: cherry, black and white. Embellishments are hand-painted. The urn is bio-degradable and manufactured at Rydéns. 
</p>
<p>
Swedish Funeral Directors Association (SBF) 
</p>
<p>
The 400 member parlours of the SBF manage over half of the funerals in Sweden today. There is a strong desire within the SBF to meet the personal wishes and viewpoints of their clients and to improve customer services in general. The association is keen that the customer realises that he or she has more influence on the funeral process than is generally known. The SBF feel that there are far too many instances when bereaved family members have said, after the event: “If only we had known …”  The SBF have thus launched out on their cooperation with the Fluffbabes lifestyle-company in order to reach out to those who have individualised wishes, and to showcase the alternatives available. Never Ending Story, Angelbox and Angeldust are all retailed by the member companies of the association. Change is unavoidable and desirable, and the SBF is keen to take part in the development process in a positive spirit and work towards lasting relationships in the future.
</p>
<p>
<b>For more information, contact:</b><br>
Charlotta Lindgren Östlund, The Swedish Funeral Directors Association,  <br>
charlotta.lindgren@memento.se, <br>Phone: 08-556 811 83, 070-608 81 83<br>
www.begravningar.se

<br><br>

Morgan Löfgren, Rydéns,<br>
morgan@rydens.se, <br>Phone: 0481-487 70, 070-595 58 93<br>
www.rydens.se

<br><br>
Åsa Scharin, Fluffbabes,<br>
asa@fluffbabes.com, <br>Phone: 0709-220 211 <br>
www.neverendingstory.nu
<br><br>
Annika Legàth Fagerström, Fluffbabes,<br>
annika@fluffbabes.com, <br>Phone: 0733-68 06 46<br>


</p>
<p>
For high-resolution photographs, visit:
<a href="/en/pressphotos/default.asp" title="pressbilder">www.neverendingstory.nu/en/pressphotos</a>

</p>

    </td>
    <td class="right" valign="top">
&nbsp;<br>
    </td>



  </tr>  
</table>



</FORM>

<input type="hidden" id="initOrderRowCounts" value="0">
<input type="hidden" id="initOrderRowTotals" value="0">





<!-- artiklarna slut -->

<!-- END web SIDAN -->

    </td>
  </tr>  



  <tr class="trbottom">     
    <td align="center">

<img src="/bilder/hr.png">    
 


<table class="bottomadress" border="0" align="center" width="780">
  <tr>     
    <td width="80" valign="top" class="bottomadress2">
<a href="http://www.begravningar.se" title="Sveriges Begravningsbyråers Förbund" target="_sbf">
    	<img src="/bilder/sbf.jpg" border="0" width="69" height="66" alt="Sveriges Begravningsbyråers Förbund" title="Sveriges Begravningsbyråers Förbund">
</a>
    </td>
    <td width="100" valign="top" class="sbf"><br>
<a href="http://www.begravningar.se" title="Sveriges Begravningsbyråers Förbund" target="_sbf">
The Swedish<br>  Funeral Directors<br> Association
</a>
    </td>
    <td width="110" class="fluffbabes" valign="top">
   	
in collaboration with <br>	
<a href="/en/fluffbabes.asp" title="Fluffbabes">
    	<img src="/bilder/fluffbabes.jpg" border="0" width="100" height="35" alt="fluffbabes" title="fluffbabes">

</a>

    </td>
    <td>
&nbsp;	
    </td>
    <td width="320" align="right" valign="top" class="bottom">
<b>SBF</b> Upplagsvägen 1, 117 43 Stockholm, Sweden, 08-556 811 80<br>
<b>Customer services:</b> 020-210 210	
<br><br>

<b>Email: Never ending story:</b>
<a href="mailto:info@angelbox.se" target="_Email" title="Email">info@neverendingstory.nu</a><br>

    </td>
  </tr>  
</table>

    </td>
  </tr>  
 
</table>




<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-11367850-1");
pageTracker._trackPageview();
} catch(err) {}</script>

</body>
</html>

