var ie7 = ($.browser.msie && parseInt($.browser.version) == 7);
var ie8 = ($.browser.msie && parseInt($.browser.version) == 8);

$(function () {
    $('.drop').topDrop();
    $('.dropper').dropdown();
    $('.accordion').accordions();
    $('.newsScroll').newsTicker();
    $('.results .item').linkedBlock();
    $('.listview tbody tr').linkedBlock();
    $('.newsItem').linkedBlock();

    if (ie7) $('.dropper:first').addClass('first');

    //$(".results .item:nth-child(3n+1)").addClass("last");


    
    $('a.translate').click(function (e) {
        e.preventDefault();
        $('.languageList').toggle();
    });
    
});

$(window).load(function () {
    $('.newsScroll .scrollItem').equalHeight();
    $('.threeColumns .col').equalHeight();
    $('.vcardOuter').each(function () {
        var t = $(this);
        if (t.find('.vcard').size() < 1) {
            t.hide();
        }
    });
    $('.vcard').equalHeight();
    //$('.results .item').equalHeight();
    $('.results tr').each(function () {
        $('td .item', $(this)).equalHeight();
    });

    if (ie7)
        $('#sfWrap .results .item').parent('td').css('padding-bottom', '20px');

});
