﻿/*<body></body>*/
function sanitizeHeadline(str)
{
    str = $('<div></div>').html(str).text();  // Decode HTML enities
    str = str.replace(/<[^>]*>/g, '');        // Remove HTML tags
    str = str.toLowerCase();
    str = str.replace(/:/g, '-');
    str = str.replace(/\s/g, '_');
    return str;
}

if (jQuery) {
    $(function()
    {
        $('#toolMenu li:first a').addClass('first');
        $('#topMenu li:last a').addClass('last');
        $('a.gallery, a.gallery-right').filter("[href!='#']").fancybox();
        $('tr:first-child td').addClass('firstRow');
        $('td:first-child').addClass('firstCol');
        $(".referenzenteaser li div:first-child").addClass('even');
    });
}
function sanitizeHeadline(str)
{
    str = $('<div></div>').html(str).text();  // Decode HTML enities
    str = str.replace(/<[^>]*>/g, '');        // Remove HTML tags
    str = str.toLowerCase();
    str = str.replace(/:/g, '-');
    str = str.replace(/\s/g, '_');
    return str;
}

if (jQuery) {
    $(function()
    {
        $('#toolMenu li:first a').addClass('first');
        $('#topMenu li:last a').addClass('last');
        $('a.gallery, a.gallery-right').filter("[href!='#']").fancybox();
        $('tr:first-child td').addClass('firstRow');
        $('td:first-child').addClass('firstCol');
        $(".referenzenteaser li div:first-child").addClass('even');
    });
}
 
