$(document).ready(function() {
    Cufon.replace('h1, h2');
    
//    if ($.browser.msie) {
//        $('select[id$=SearchCategory]').selecteSizer();
//    }

        // setup line break 
        $('.peoplegrid').each(function () {
            var total = $(this).children('.item').length;
            $(this).children('.item').each(function (i) {
                if (((i + 1) % 3) == 0) {
                    $(this).css({ 'margin-right': '0', 'border-right-width': 0 });

                    if ((i + 1) != total && $(this).next('.linebreak').length < 1)
                        $('<div class="linebreak"></div>').insertAfter($(this));
                }
            });
        });

        // Swap firstname and lastname 
        $('.personname a, #peopledetails .title').each(function (i) {
            var oName = $(this);
            var arrName = oName.html().split(', '); 
            if (arrName[0] && arrName[1]) oName.html(arrName[1] + ' ' + arrName[0]);
        });
	
        

});
