﻿
$(document).ready(function(){
    $(".Clientsbox").css("display","none");
    $("#divFace1").fadeIn("slow");
});


function changeDiv(id)
{
    $(".Clientsbox").fadeOut("fast");
    window.setTimeout('makeAppear('+id+')',1000);
}

function makeAppear(id)
{
    $("#divFace"+id).fadeIn("fast");
}

/*
function changeDiv(id)
{
    // if you add more news, change the make cnt value accordingly.
	for (var cnt=1; cnt<10; cnt++){
		Effect.Fade(document.getElementById('divFace'+cnt, {duration:1}));
	}
	window.setTimeout('makeAppear('+id+')',1000);
}

function makeAppear(id)
{
    //alert(document.getElementById('ctl00_MainArea_divFace'+id));
	Effect.Appear(document.getElementById('divFace'+id, {duration:1})); 
}
*/

