$(document).ready(function(){	
	/*$("#photos").easySlider({
		auto: true,
		pause:	5000,
		speed : 1200,
		continuous: true,
		prevText: '',
		nextText:'',
		pauseable: true
	});*/
	
	var i=0;
	var j=0;
	
	i=$('#photos img').size()
	
	$('#photos img').load(function(){
								   
								   	j=j+1;
									
									if (j==i){
										 
											 $('#photos').cycle({
												fx: 'fadeout',
												easing : 'easeOutSine',
												speed: 2500,
												timeout: 4000,
												delay:  0,
												sync: 1
											});
											 
									}
										 
									});
	
	
	
});
