// Java Document

$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'custom' ,// choose your transition type, ex: fade, scrollUp, shuffle, etc...
    cssBefore: {  
        left: 115,  
        top:  115,  
        width: 0,  
        height: 0,  
        opacity: 1, 
        zIndex: 1 
    }, 
    animOut: {  
        opacity: 0  
    }, 
    animIn: {  
        left: 0,  
        top: 0,  
        width: 275,  
        height: 240  
    }, 
    cssAfter: {  
        zIndex: 0 
    }, 
    delay: 500,   // -4000 is default
	speed: 2000,   //added by Alan
	timeout: 8000  //added by Alan
});
});
