﻿function showItem(itemId, passingLink) {
    var item = $('#' + itemId);
    var link = $(passingLink);
    var parent = link.parents('li').get(0);
    var foundIt = false;

    $('.work-item .item-box').each(function(i) {
        if (this.style.display != 'none' && !foundIt) {
            $(this).fadeOut('slow');
            item.fadeIn('slow');
            foundIt = true;
        }
    });

    $('.inner-controls li').each(function(i) {
        if ($(this).hasClass('on')) {
            $(this).removeClass('on');
        }
    });

    $(parent).addClass('on');

    sIFR.replace(tradegothic, {
        selector: 'h2',
        wmode: 'transparent',
        css: '.sIFR-root { color: #417630; kerning:true; letter-spacing:-1; leading: -10; font-size:30px; } a{color:#417630;text-decoration:none;} a:hover{color:#417630;text-decoration:none;}'
    });
}

$(document).ready(function() { $('.inner-controls li:first').addClass('on'); });
