$(document).ready(function(){
 	$("#splash").css({display: 'none'}).fadeIn(500);
    
    setTimeout(function() {
	   	$('#splash').cycle({
	  		fx:			'custom',
	  		sync: 		1,
	  		random: 	1,
	  		nowrap:  	1, 
	  		
	  		cssBefore: {
	  			right: -100,
				height: 300,
				opacity: 0,
	  			display: 'block'
	  		},
	  		
	  		animOut: {
	  			opacity: 0  
	  		},
	  		
	  		animIn: {
	  			opacity: 1,
	  			height: 300
	  		},
	  		
	  		cssAfter: {
				right: 0,
				zIndex: 0    
	  		}, 
	  		
	  		delay: -1000 
	   	});

   }, 0);
});

