$(document).ready(function(){
	var margin =$("#image1").height()/2;
	var width=$("#image1").width();
	var height=$("#image1").height();
	var i=1;
	var nb=12;
	$.fn.flipImages=function(){
		$("#image" + i).stop().animate({height:'0px',width:''+width+'px',marginTop:''+margin+'px',opacity:'0.5'},{duration:1000});
		
		if(i == nb) i = 0;
		window.setTimeout(function() {
			$("#image" + ++i).stop().animate({height:''+height+'px',width:''+width+'px',marginTop:'0px',opacity:'1'},{duration:1000});
		},1000);
	};

	$.fn.fadeImages=function() {
		$("#image" + i).stop().animate({opacity:'0'}, {duration: 1000});

		if(i == nb) i = 0;

		//window.setTimeout(function() {
			$("#image" + ++i).stop().animate({opacity: '1'}, 1000);
		//}, 100);

	}
	
	$(".diapoHide").css({opacity: 0});
	if($('#diapoCont'))
		setInterval("$('#diapoCont').fadeImages()", 6000);
});
