$(document).ready(function() {
    // Slideshow
    $('.slideshow').cycle({
        fx: 'fade' 
    });
    
    // Social media rollovers
    $.each($('#smicons a img'), function() {       
       $(this).hover(function() {           
           var newImgSrc = $(this).attr('src').replace('1','2');
           $(this).attr('src', newImgSrc);
       }, function() {
           var newImgSrc = $(this).attr('src').replace('2','1');
           $(this).attr('src', newImgSrc);           
       }) 
    });
    
    // Clients nth child
    $("ul.clients li:nth-child(3n+3)").css('margin', '0 0 15px 0');
});
