// JavaScript Document

	
jQuery(document).ready(function(){
	jQuery('#slides').cycle({ 
		fx:      'custom', 
		cssBefore: { 
			left: 275,  
            top:  274,
			width: 0,  
			height: 0,  
			opacity: 1, 
			zIndex: 1 
		}, 
		animOut: {  
			opacity: 0  
		}, 
		animIn: {    
		left: 0,  
        top: 0,  
        width: 551,  
        height: 548  
		}, 
		cssAfter: {  
			zIndex: 0 
		}, 
		delay: -3000 
	});

});

