$(document).ready(function(){
    $('#kwicks-container').kwicks({
        max: 740,
        spacing: 0,
        duration: 1000
    });
    $('#kwicks-container li').hover(function(){
        $('#kwicks-container li').not($(this)).find('img').stop().fadeTo('slow', .3)
        $('#kwicks-container li').not($(this)).find('.kwicks-caption').stop().hide();
    }, function(){
        $('#kwicks-container li').not($(this)).find('img').stop().fadeTo('slow', 1);
        $('#kwicks-container li').not($(this)).find('.kwicks-caption').stop().show();
    });

	$('.testimonies').columnize({columns: 2});
})

