$(function() {
    // thumb rollovers
    $('img.thumboff').hover(function() {
        $(this).stop().animate({opacity: 0}, 300);
    },
        function() {
        $(this).stop().animate({opacity: 1}, 1000);
    });

    // client header
    $('a.clientheader').click(function(event) {
        event.preventDefault();
        var i = $(this).attr('id').replace('clientheader-','');
        $('#clientinfo-' + i).slideToggle('slow');
        //$(this).stop().animate({opacity: 0}, 300);
    });

    // logo rollover
    $('#logo img').hover(function() {
        $(this).css('left', -150);
    },
        function() {
        $(this).css('left', 0);
    });

    $("a.fancybox").fancybox({
        'titleShow':       true,
        'titlePosition':   'inside',
        'overlayColor':    '#000',
        'overlayOpacity':  0.6,
        'autoDimensions':  false,
        'showCloseButton': true,
        'padding':         10
    });
});
