function animation(number) 
{

}
jQuery(document).ready(function() {
	animation(1);
});
function animation(number) 
{	
	
	$('#image'+(number.toString())).fadeOut(1500);
	number++;
	if(number > 3)
		number = 1;	
	$('#image'+(number.toString())).fadeIn(1500, function() {
		setTimeout("animation("+number+")", 2000);
	});
	
}
jQuery(document).ready(function() {
	animation(1);
});
