// JavaScript Document

function loadCrea(id_client,id_type,id_crea){

	document.location.replace("index.php?id_type="+id_type+"&id_client="+id_client+"&id_crea="+id_crea);
}

function visuel_next(){
	nb=$('.visu').length;
	id=$('.visu:visible').attr('id');
	$('#'+id).fadeOut(500, function(){
		if($('#'+id).next('IMG.visu').attr('id')=='visu_'+(nb-1)) $('#fleche_d').fadeOut(100);
		else $('#fleche_d').show();
	
		if(id=='visu_0') $('#fleche_g').show();
		
		
		$('#'+id).next('IMG.visu').fadeIn(1000)
	})
	
}

function visuel_prev(){
	nb=$('.visu').length;
	id=$('.visu:visible').attr('id');
	$('#'+id).fadeOut(500, function(){
		if($('#'+id).prev('IMG.visu').attr('id')=='visu_0') $('#fleche_g').fadeOut(100);
		else $('#fleche_g').show();

		if(id=='visu_'+(nb-1)) $('#fleche_d').show();
	
		$('#'+id).prev('IMG').fadeIn(1000)
	})
	
}
