/*** SPLASH SLIDER ***/

$(function(){

$('#splash').slides({
preload: true,
play: 8000,
pause: 2500,
hoverPause: true
});

$('#wearerohei').slides({
preload: true,
play: 5000,
pause: 2500,
hoverPause: true,
effect: 'fade',
generatePagination: false
});

$('#funfacts').slides({
preload: true,
randomize:true,
effect: 'fade',
generatePagination: false,
autoHeight: true
});

var d=300;
                $('#thumbnails .img').each(function(){
                $(this).stop().animate({'marginTop':'0'},d+=150);
				});
   
                $('#thumbnails .img').hover(
                    function () {
                        $('.content',$(this)).stop().animate({'marginTop':'76px'},200);
                    },
                    function () {
                        $('.content',$(this)).stop().animate({'marginTop':'96px'},200);
                    }
);

});

