            $(document).ready(function(){
                $("#container").fadeIn(1000);
                $("#mSlide").show(500);
                
                $("#mSlide").cycle({
                    fx: 'fade',
                    speed: 2500
                })

                $("#ticker").cycle({
                    fx: 'scrollUp',
                    continuous: 1,
                    speedIn: 30000,
                    speedOut: 30000, 
                    timeout: -30000,
                    delay: 2500
                });
                
                $("#nSlide").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: 330,  
						height: 175  
					}, 
					cssAfter: {  
						zIndex: 0 
					}, 
					delay: -2000 
				});
            })