$(document).ready(function() {

   $('a.friend ').click(function (e) {

        e.preventDefault(); //prevent the link from doing default behaviour

        var subject =''; //the emails subject
        var body = '';  //the emails body

        // Eingefügt von Jacob - 05.12.2008
        //var title_str = $('h2').text();
        subject += 'interCo Link'+ '\n';

        //subject += 'interCo - ' + str.replace(/&auml;/g,"ä") + '\n';
        //$('h2').text()
        body += 'Dieser Artikel wird Sie interessieren:\n' +
                "Link: " + window.location;

       window.location = "mailto:?subject="+escape(subject)+"&body="+escape(body); //escape encodes html entities

   });//end tell friend

});
