$(document).ready(function(){
 
	/* TO THE TOP */
	
	$('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 500);
        return false;
    });


    /* SETUP THE SLIDER */
    $('#slides').slides({
        preload: true,
        preloadImage: '../images/loading.gif',
        play: 5000,
        pause: 5000,
        effect: 'fade',
        fadeSpeed: 2000,
        crossfade: true,
        generatePagination: false,
        randomize: true
    });
});
