hauteurtotale = 0;
function defilementStart() {
	$("#tel_contact_conteneur>p").each(function() {
      if(parseInt($(this).css('top')) == -37) {
      $(this).clone().insertAfter('#tel_contact_conteneur>p:last').css('top',hauteurtotale - 74 +'px');
      $(this).remove();
       }
	var top = parseInt($(this).css('top'));
      $(this).animate({ 
        top: top-37+'px'
      }, 2000 );
    });
	window.setTimeout(function() {defilementStart()},3000);	
}
$(document).ready(function(){
	$('#link_page4').click(function(){	
		$('#col_center').fadeOut();
		$('#col_pass').fadeIn();
		$('#contenu_header').css('background','url(templates/defaut/images/bg_contenu_head_pass.png) no-repeat top center transparent')
		return false;
	});
	$('#link_page2').click(function(){
		$('#col_pass').fadeOut();
		$('#col_center').fadeIn();
		$('#contenu_header').css('background','url(templates/defaut/images/bg_contenu_head_contact.png) no-repeat top center transparent')
		return false;
	});
	var i = 0;
	$("#tel_contact_conteneur").find("p").each(function() {
		var top = hauteurtotale;
		hauteurtotale = hauteurtotale + 37;
		$(this).css('top',top+'px');
	i++;
	});
	if(i>3) {
		window.setTimeout(function() {defilementStart()},3000);
	}
});
