$(document).ready(function(){
    $('#show').cycle({   
        fx: 'custom', 
        cssBefore: {  
            left: 115,  
            top:  115,  
            width: 0,  
            height: 0,  
            opacity: 1, 
            zIndex: 1 
        }, 
        animOut: {  
            opacity: 0  
        }, 
        animIn: {  
            left: 0,  
            top: 0,  
            width: 600,  
            height: 300  
        }, 
        cssAfter: {  
            zIndex: 0 
        }, 
        delay: -3000
    });
});
