$(document).ready(function(){

    var img_cache = [];
    $('img.image-text').each(function(){
    
        // Cache mouseover images
        var im = document.createElement('img');
        im.src = $(this).attr('src').replace('.png', '_over.png');
        img_cache.push(im);
                
        // Swap image on hover
        $(this).parent().hover(
            function(){
                $(this).find('img').attr('src', $(this).find('img').attr('src').replace('.png', '_over.png'));
            },
            function(){
                $(this).find('img').attr('src', $(this).find('img').attr('src').replace('_over.png', '.png'));
            }
        );
    });
    
    $('a.box').fancybox({
    	'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'cyclic'        :   true,
		'overlayShow'	:	false
    });
    
    $('#viewport').serialScroll({
        items: 'div.page',
        step: 1,
        easing: 'swing',
        force: true,
        interval: 8000,
        duration: 1400,
        
    });
    
});
