/**
 * Any of our own javascript.
 * Currently, just fade in the first image so we don't see all images loading.
 */
$(document).ready(function() {
	$('.slideshow img:first').fadeIn(400, function () {
		$('.slideshow').cycle({timeout:5000});
	});
	
	$('.newstudent_slideshow').cycle({
		fx: 'shuffle',
		delay:-3000,
		pause:1});
});

