jQuery(document).ready(function() {

    Cufon.replace('#content_left h1', {fontFamily: 'Architext'});
    Cufon.replace('#side_menu .header, .breadcrumb a, #content_left h2, .red, .fieldarea', {fontFamily: 'Libel Suit'});
    $('.breadcrumb').corner("10px cc:#ffffff");
});

function strstr (haystack, needle, bool) {
    // Finds first occurrence of a string within another
    //
    // version: 1008.1718
    // discuss at: http://phpjs.org/functions/strstr    // +   original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // +   bugfixed by: Onno Marsman
    // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // *     example 1: strstr('Kevin van Zonneveld', 'van');
    // *     returns 1: 'van Zonneveld'    // *     example 2: strstr('Kevin van Zonneveld', 'van', true);
    // *     returns 2: 'Kevin '
    // *     example 3: strstr('name@example.com', '@');
    // *     returns 3: '@example.com'
    // *     example 4: strstr('name@example.com', '@', true);    // *     returns 4: 'name'
    var pos = 0;

    haystack += '';
    pos = haystack.indexOf( needle );    if (pos == -1) {
        return false;
    } else{
        if (bool){
            return haystack.substr( 0, pos );        } else{
            return haystack.slice( pos );
        }
    }
}
