﻿$(document).ready(function() {
    $(".teasercontainer div.teaser").each(function(index) {
        if (index % 4 == 0) {
            $(this).css("margin-left", "0px");
        }

        if (index % 4 == 3) {
            $(this).css("margin-right", "0px");
        }
    });
    
    $('#homeslideshow').cycle({
        fx: 'uncover',
        pause: 1
    });

    $('#portfolioslideshow').cycle({
        fx: 'fade',
        pause: 1
    });

});
