//Fade
$('a.thumb, div.three img')
.each(function(index){
var _this = this;
setTimeout( function(){ $(_this).fadeIn('slow'); }, 150*index );
});

//Scroll
$(document).ready(function() {
    $('#fixed').scrollToFixed({
        marginTop: 15
    });
});
