clock = 10;
function close_modal() {
                $("#divOverlay").fadeOut(2000);
                $("#divWhiteArea").fadeOut(2000);
}
function count_down() {
                $("#seconds").html(clock);
                if (clock==0) {
                                $("#seconds").html('0');
                                clearInterval(clock);
                                close_modal();
                } else {
                                clock = clock - 1;
                }
}
function StartIntro()
{
	$("#divOverlay").show();
	$("#divWhiteArea").show();
	setInterval('count_down()', 1000);
}
