var flash_time=0;
var flash_enterframe=100;
var flash_nb_img=12;

var pos_anim_top=0;

var tab_top_color=new Array('#0000ff','#000000','#0000ff','#000000','#0000ff','#000000','#0000ff');


function Flash_Scenario()
{
	
	if(flash_time==5*flash_enterframe*flash_nb_img)
	{		
		Cligno_Color();
	}
	
	
	if(flash_time==25*flash_enterframe*flash_nb_img)
	{
		flash_time=0;
	}
	
	flash_time=flash_time+flash_enterframe;
	
	setTimeout("Flash_Scenario()",flash_enterframe);
}

function Cligno_Color()
{
	

	Get_Obj('link_inscription').style.color=tab_top_color[pos_anim_top];
	Get_Obj('link_inscription').onmouseover=function()
	{
			this.style.color='#000000';
	}
	
	Get_Obj('link_inscription').onmouseout=function()
	{
			this.style.color='#0000ff';
	}

	if(pos_anim_top<tab_top_color.length)
	{
		pos_anim_top++;
		setTimeout("Cligno_Color()",flash_enterframe);
	}
	else
	{
		pos_anim_top=1;
	}
}



function Photo_Ref()
{
	//alert(url)
	Ajax_Call_Page(url,'div-absolute','ajax=1',ajax_photo_ref,0,0);
}

function Photo_Over(p_obj_ref,p_id)
{
	//Get_Obj('largeur_page').style.width='950px';
	//alert(Get_Obj('largeur_page').style.width);
	p_obj_ref.style.height='120px';
	p_obj_ref.style.left='-15px';
	p_obj_ref.style.top='-15px';
	Get_Obj('div-photo-'+p_id).style.zIndex=2000;
}

function Photo_Out(p_obj_ref,p_id,p_indexz)
{
		p_obj_ref.style.height='100px';
		p_obj_ref.style.left='0px';
		p_obj_ref.style.top='0px';
		Get_Obj('div-photo-'+p_id).style.zIndex=p_indexz;
}

